Merge pull request #117 from digitalocean/dependabot/go_modules/githu… #124
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: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.20.x, 1.21.x] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Restore cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Ensure code is formatted with gofmt | |
run: make check-fmt | |
if: matrix.os == 'ubuntu-latest' | |
- name: Ensure generated code was recreated if needed | |
run: make check-generate | |
if: matrix.os == 'ubuntu-latest' | |
- name: Lint with golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
only-new-issues: true | |
if: matrix.os == 'ubuntu-latest' | |
- name: Run unit tests | |
run: make test | |
- name: Verify plugin binary works with Packer | |
run: make plugin-check | |
if: matrix.os == 'ubuntu-latest' |