-
Notifications
You must be signed in to change notification settings - Fork 9
51 lines (45 loc) · 1.17 KB
/
simulations.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Simulation
# Simulation workflow runs simulation test
# This workflow is run on pushes to master & every Pull Requests where a .go, .mod, .sum have been changed
on:
pull_request:
push:
branches:
- main
env:
GO_VERSION: "1.21.0"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
cache: true
cache-dependency-path: go.sum
-
name: Get git diff
uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/**!(test).go
go.mod
go.sum
Makefile
- name: Run determinism check simulation
run: |
make test-sim-determinism
if: env.GIT_DIFF
- name: Run export-import simulation
run: |
make test-sim-export-import
if: env.GIT_DIFF
- name: Run after-import simulation
run: |
make test-sim-after-import
if: env.GIT_DIFF