medium.rip/.github/workflows/test.yml
Sphericalkat bfe85addfa feat: add workflow to build and test code
Signed-off-by: Sphericalkat <amolele@gmail.com>
2023-05-28 23:12:19 +05:30

23 lines
438 B
YAML

name: Run tests
on: [push, pull_request]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.18', '1.19', '1.20' ]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build .
- name: Test
run: go test ./...