Skip to content

Configure the gitignore apimatic file #6

Configure the gitignore apimatic file

Configure the gitignore apimatic file #6

Workflow file for this run

name: Build & run tests
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19', '1.20', '1.21.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Test with the Go CLI
run: go test -modfile ./test/go.mod ./test