Skip to content

Rename docker.yaml to docker.yml #272

Rename docker.yaml to docker.yml

Rename docker.yaml to docker.yml #272

Workflow file for this run

name: Go Tests
on:
pull_request:
jobs:
test:
name: Go
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.19'
cache: true
- name: Run Go tests
run: make test-go