move to v1 of mergo library #59
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: Examples | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
run-examples: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21 | |
- name: Run Simple | |
run: go run examples/simple/main.go | |
- name: Run Error | |
run: go run examples/error/main.go | |
continue-on-error: true | |
- name: Run Progress | |
run: go run examples/progress/main.go | |
- name: Run Multi | |
run: go run examples/multi/main.go |