mirror of
https://github.com/vacp2p/rln-contract.git
synced 2025-02-16 16:37:02 +00:00
fix: install forge in ci
This commit is contained in:
parent
f0ac6c3022
commit
ce78e2ca63
38
.github/workflows/ci.yml
vendored
38
.github/workflows/ci.yml
vendored
@ -4,32 +4,40 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
paths:
|
paths:
|
||||||
- '**.sol'
|
- "**.sol"
|
||||||
- 'scripts/**.ts'
|
- "scripts/**.ts"
|
||||||
- 'test/**.ts'
|
- "test/**.ts"
|
||||||
- 'hardhat.config.ts'
|
- "hardhat.config.ts"
|
||||||
- 'package.json'
|
- "package.json"
|
||||||
- '.github/workflows/ci.yml'
|
- ".github/workflows/ci.yml"
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
paths:
|
paths:
|
||||||
- '**.sol'
|
- "**.sol"
|
||||||
- 'scripts/**.ts'
|
- "scripts/**.ts"
|
||||||
- 'test/**.ts'
|
- "test/**.ts"
|
||||||
- 'hardhat.config.ts'
|
- "hardhat.config.ts"
|
||||||
- 'package.json'
|
- "package.json"
|
||||||
- '.github/workflows/ci.yml'
|
- ".github/workflows/ci.yml"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Install Foundry
|
||||||
|
uses: foundry-rs/foundry-toolchain@v1
|
||||||
|
with:
|
||||||
|
version: nightly
|
||||||
|
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 16
|
||||||
cache: 'yarn'
|
cache: "yarn"
|
||||||
- id: dependencies
|
- id: dependencies
|
||||||
run: yarn install
|
run: yarn install
|
||||||
|
|
||||||
@ -49,4 +57,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
coverage-files: coverage/lcov.info
|
coverage-files: coverage/lcov.info
|
||||||
artifact-name: code-coverage-report
|
artifact-name: code-coverage-report
|
||||||
|
Loading…
x
Reference in New Issue
Block a user