Skip to content

Commit

Permalink
Add GH Actions config file
Browse files Browse the repository at this point in the history
test

test

Update .github/workflows/ci.yaml

Co-authored-by: Valentin Rodygin <[email protected]>

Update .github/workflows/ci.yaml

Co-authored-by: Valentin Rodygin <[email protected]>
  • Loading branch information
palango and carterqw2 committed Nov 27, 2023
1 parent 10e5420 commit 8179391
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: CI

on:
push:
branches:
- master
- celo*

pull_request:
branches:
- master
- celo*

jobs:
Test:
runs-on: ["8-cpu","self-hosted","org"]
steps:
- uses: actions/checkout@v4

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

- name: Build
run: make all

- name: Run e2e tests
shell: bash
run: |
curl -L https://foundry.paradigm.xyz | bash
source /home/runner/.bashrc
FOUNDRY_HOME="/home/runner/.foundry/bin"
PATH="${FOUNDRY_HOME}:${PATH}"
/home/runner/.foundry/bin/foundryup
e2e_test/run_all_tests.sh
- name: Test
run: make test

Lint:
runs-on: ["8-cpu","self-hosted","org"]
steps:
- uses: actions/checkout@v4

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

- name: Lint
run: make lint

0 comments on commit 8179391

Please sign in to comment.