feat: Filtering implementation with support for None
filter type
#207
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |