Skip to content

Commit

Permalink
ci(simulator): simulator support
Browse files Browse the repository at this point in the history
  • Loading branch information
fmorency committed Jul 19, 2024
1 parent dfca838 commit eb4aa4b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/simulator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Simulator tests
on:
push:
branches:
- main
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out source
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
check-latest: true
- name: Full application simulation (fixed seed)
run: make sim-full-app
- name: Simulation after state import (fixed seed)
run: make sim-after-import
# # Requires wiring v2
# # https://github.com/strangelove-ventures/poa/issues/199
# - name: Simulation export/import (fixed seed)
# run: make sim-export-import
- name: Simulate application state determinism (fixed seed)
run: make sim-app-determinism

0 comments on commit eb4aa4b

Please sign in to comment.