fix segfault with m5 cpu (#27) #53
Workflow file for this run
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: Run CI Tests | |
| on: [push] | |
| jobs: | |
| run-copywrite: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: hashicorp/setup-copywrite@v1.1.2 | |
| - name: verify copyright | |
| run: | | |
| copywrite headers --plan | |
| run-lint: | |
| runs-on: [macos-latest] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: hashicorp/setup-golang@v1 | |
| with: | |
| version-file: go.mod | |
| - name: GolangCI-Lint | |
| uses: golangci/golangci-lint-action@v3 | |
| with: | |
| version: v1.52.2 | |
| skip-cache: true | |
| run-tests: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - macos-11 | |
| - macos-12 | |
| - ubuntu-22.04 | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: hashicorp/setup-golang@v1 | |
| with: | |
| version-file: go.mod | |
| - name: Run Go Test | |
| run: | | |
| make vet | |
| make test |