Skip to content

Commit

Permalink
drop to just one file
Browse files Browse the repository at this point in the history
  • Loading branch information
shanemadden committed Aug 19, 2024
1 parent 7b8c296 commit e702ee3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 20 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/lint.yml → .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
on: [push, pull_request]

name: lint
name: check

jobs:
lint-stable:
test-stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --all -- --check
- run: cargo clippy --all-features -- -D warnings
lint-nightly:
- run: cargo test --all-features
test-nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: cargo fmt --all -- --check
- run: cargo clippy --all-features -- -D warnings
- run: cargo test --all-features
17 changes: 0 additions & 17 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit e702ee3

Please sign in to comment.