Skip to content

fix: GH Actions warnings from task-definition.json #7

fix: GH Actions warnings from task-definition.json

fix: GH Actions warnings from task-definition.json #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.21.x"
- name: Install Dependencies
run: go get .
- name: Check Build
run: go build -v ./...
- name: Run Tests
run: go test