Skip to content

Commit

Permalink
chore(ci): adds ci to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexangelj committed Oct 10, 2023
1 parent 6cdff56 commit 5af9a3b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: test

on: push

jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.71.0
override: true

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Build bindings
run: FOUNDRY_PROFILE=default ./build.sh

- name: test
run: cargo test --workspace --exclude bindings

0 comments on commit 5af9a3b

Please sign in to comment.