Skip to content

lattigo

lattigo #41

Workflow file for this run

name: lattigo
on:
pull_request:
push:
branches: # pushing tags is also considered as a push. Exclude this here.
- "*"
schedule:
- cron: "0 0 * */3 0" # https://crontab.guru/#0_0_*_*/3_0
jobs:
lattigoLearninng:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-go@main
with:
go-version: 1.20
- run: go run main.go
name: unit test
working-directory: lattigoLearninng