Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
palango committed Nov 10, 2023
1 parent c140f63 commit 44ba979
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,37 @@ on:
- celo*

jobs:
test:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v4
with:
go-version: '1.19'
go-version: '1.20'

- name: Install foundry
run: |
curl -L https://foundry.paradigm.xyz | sh
~/.config/.foundry/bin/foundryup
- name: Build
run: make all

- name: Run e2e tests
run: PATH="~/.foundry/bin:${PATH}" e2e_test/run_all_tests.sh

- name: Test
run: make test
lint:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v4
with:
go-version: '1.19'
go-version: '1.20'
cache: false

- name: Lint
run: make lint

0 comments on commit 44ba979

Please sign in to comment.