Skip to content

Commit

Permalink
Merge branch 'main' into babel
Browse files Browse the repository at this point in the history
  • Loading branch information
shanemadden committed Aug 19, 2024
2 parents 9ad0aa1 + a659c07 commit 98e1f9d
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 205 deletions.
42 changes: 0 additions & 42 deletions .github/workflows/build.yml

This file was deleted.

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, pull_request]

name: check

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

This file was deleted.

89 changes: 0 additions & 89 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 98e1f9d

Please sign in to comment.