-
Notifications
You must be signed in to change notification settings - Fork 4
36 lines (31 loc) · 1.05 KB
/
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
34
35
36
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
# needs: [test, test-zk]
# if: always()
# steps:
# - uses: actions/upload-artifact/merge@v4
# 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*'
# delete-merged: true