Skip to content

fix path to deployment yaml #13

fix path to deployment yaml

fix path to deployment yaml #13

Workflow file for this run

name: Go
on:
pull_request: {}
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- '1.22.x'
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
# You can test your matrix by printing the current Go version
- name: Run tests
run: make test