-
Notifications
You must be signed in to change notification settings - Fork 4
33 lines (29 loc) · 990 Bytes
/
tests.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
name: Test
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
pull_request:
push:
branches:
- main
jobs:
lint:
uses: bgd-labs/github-workflows/.github/workflows/foundry-lint-prettier.yml@feat/better-sharable-actions
test:
uses: bgd-labs/github-workflows/.github/workflows/foundry-test.yml@feat/better-sharable-actions
test-zk:
uses: bgd-labs/github-workflows/.github/workflows/foundry-test-zk.yml@feat/better-sharable-actions
merge:
name: Merge artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/upload-artifact/merge@v4
if: always()
with:
# The name of the artifact that the artifacts will be merged into
# Optional. Default is 'merged-artifacts'
name: 'content'
# A glob pattern matching the artifacts that should be merged.
# Optional. Default is '*'
pattern: 'content*'