Skip to content

Commit

Permalink
scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
andybarron committed Jul 9, 2024
1 parent 6a1f143 commit f82df58
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 17 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy, rustfmt
toolchain: ${{ matrix.rust }}
- run: cargo install just cargo-tarpaulin cargo-msrv
- run: just format-ci
- run: just check-ci
- run: just test-ci
- run: cargo install cargo-tarpaulin cargo-msrv
- run: ./scripts/ci/format
- run: ./scripts/ci/check
- run: ./scripts/ci/test
- run: cargo msrv verify
if: ${{ matrix.rust == 'stable' }}
- uses: coverallsapp/github-action@v2
Expand Down
13 changes: 0 additions & 13 deletions Justfile

This file was deleted.

2 changes: 2 additions & 0 deletions scripts/ci/check
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env sh
cargo clippy --all-targets -- -Dwarnings
2 changes: 2 additions & 0 deletions scripts/ci/format
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env sh
cargo fmt -- --check --verbose
2 changes: 2 additions & 0 deletions scripts/ci/test
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env sh
cargo tarpaulin -v --all-features --ignore-tests --out Lcov
2 changes: 2 additions & 0 deletions scripts/release
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env sh
cargo release

0 comments on commit f82df58

Please sign in to comment.