Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18', '1.19', '1.20', '1.21', '1.22' ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: GO_IMAGE="golang:${{ matrix.go }}-alpine" docker compose run --rm test