Skip to content

Commit

Permalink
move ci to script
Browse files Browse the repository at this point in the history
  • Loading branch information
olynch committed Jul 22, 2024
1 parent 74a6ee5 commit f8eda68
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,4 @@ jobs:
- nightly
steps:
- uses: actions/checkout@v4
- run: cd catlog
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose
- run: bash scripts/ci.sh
7 changes: 7 additions & 0 deletions scripts/ci.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

cd catlog

rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
cargo build --verbose
cargo test --verbose

0 comments on commit f8eda68

Please sign in to comment.