Skip to content

Merge pull request #6 from polyfloyd/dependabot/cargo/image-0.25 #6

Merge pull request #6 from polyfloyd/dependabot/cargo/image-0.25

Merge pull request #6 from polyfloyd/dependabot/cargo/image-0.25 #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
toolchain: [stable, nightly]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup default ${{ matrix.toolchain }}
- run: rustup update
- run: cargo build
- run: cargo test
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt -- --check
- run: cargo clippy