Skip to content

Stub Out Authorization #6

Stub Out Authorization

Stub Out Authorization #6

Workflow file for this run

name: Test Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["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 }}
# You can test your matrix by printing the current Go version
- name: Install Dependecies
run: go mod tidy
- name: Test Code
run: go test ./...