Skip to content

Commit

Permalink
Added github actions for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCCF4 committed Mar 30, 2024
1 parent 698f6d6 commit bbaadc2
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,20 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
- uses: actions/checkout@v4

- uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
with:
toolchain: "stable"

- name: Build with stable toolchain
run: cargo build --verbose

- uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
with:
toolchain: "nightly"

- name: Build with nightly toolchain
run: cargo build --verbose

- name: Run tests
Expand Down

0 comments on commit bbaadc2

Please sign in to comment.