-
Notifications
You must be signed in to change notification settings - Fork 4
37 lines (37 loc) · 913 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Tests
on:
push:
branches:
- develop
- staging
- main
pull_request:
types: [opened, synchronize, reopened]
branches:
- develop
- staging
- main
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
forge-tests:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Build
run: forge build
env:
FOUNDRY_PROFILE: ci
- name: Test
run: forge test
env:
FOUNDRY_PROFILE: ci