From a6ba143c2e0cdc4f0223c854077938f7669392c7 Mon Sep 17 00:00:00 2001 From: Paul Lange Date: Fri, 10 Nov 2023 12:12:22 +0100 Subject: [PATCH] test --- .github/workflows/ci.yaml | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ecce32025a..c2e94ee3e2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 \ No newline at end of file