Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
e00E committed Nov 9, 2024
1 parent 4e3f7fd commit b45f650
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

# We assume the runner is on x86.

jobs:
check stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain default stable
- run: cargo fmt --check
- run: cargo clippy --quiet --frozen --workspace --all-targets -- -D warnings
- run: cargo xtask

check msrv:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: rustup toolchain default 1.71
- run: cargo clippy --quiet --frozen --workspace --all-targets -- -D warnings
- run: cargo xtask

0 comments on commit b45f650

Please sign in to comment.