Bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0 #99
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: Build and Test | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
go-version: [1.17.x, 1.18.x, 1.19.x] | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Cache Go modules | |
uses: actions/cache@v2 | |
with: | |
# In order: | |
# * Module download cache | |
# * Build cache (Linux) | |
# * Build cache (Mac) | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
~/Library/Caches/go-build | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
# Some of the parts in eos-go renders timezone specific dates and as such, | |
# some of our golden files contains them. | |
- name: Configure Timezone | |
uses: szenius/[email protected] | |
with: | |
timezoneLinux: "America/New_York" | |
timezoneMacos: "America/New_York" | |
- name: Run Tests | |
run: go test ./... | |
- name: Build | |
run: go build ./... |