-
Notifications
You must be signed in to change notification settings - Fork 592
36 lines (35 loc) · 910 Bytes
/
sim.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: 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
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 🐿 Setup Golang
uses: actions/setup-go@v5
with:
go-version: "^1.22"
- name: Get git diff
uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/**.wasm
**/**!(test).go
tests/**/**.go
go.mod
go.sum
Makefile
- name: Run full application simulation
run: |
make test-sim-app
if: env.GIT_DIFF
- name: Run simulation determinism check
run: |
make test-sim-determinism
if: env.GIT_DIFF