Skip to content

feat: add lab3

feat: add lab3 #1

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: lab3
on:
push:
paths:
- 'lab3/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: 'lab3/go.mod'
cache: false
- name: Run
working-directory: 'lab3'
run: go test