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 a6ba143
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,42 @@ 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
shell: bash
run: |
curl -L https://foundry.paradigm.xyz | bash
source /home/runner/.bashrc
foundryup
- name: Build
run: make all

- name: Run e2e tests
shell: bash
run: |
source /home/runner/.bashrc
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 a6ba143

Please sign in to comment.