Bump gopkg.in/yaml.v3 from 3.0.0-20220512140231-539c8e751b99 to 3.0.1 #145
This file contains hidden or 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: Static tests | |
| on: [pull_request_target] | |
| jobs: | |
| unit-test: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Set up Go 1.18 | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: 1.18 | |
| id: go | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: Run unit tests | |
| run: make unit-test | |
| static: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Set up Go 1.18 | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: 1.18 | |
| id: go | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: Run static linters | |
| run: make static |