Skip to content

Merge pull request #5 from polyfloyd/dependabot/github_actions/action… #4

Merge pull request #5 from polyfloyd/dependabot/github_actions/action…

Merge pull request #5 from polyfloyd/dependabot/github_actions/action… #4

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