Skip to content

Go Test

Go Test #8

Workflow file for this run

---
name: Go Test
on:
# push:
# branches:
# - main
# paths:
# - 'go-algorithm/**'
# schedule:
# - cron: '0 0 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
# prettier-ignore
go-version: '1.22'
- name: Download dependencies
working-directory: ${{github.workspace}}/go-algorithm
run: make module
- name: Test
working-directory: ${{github.workspace}}/go-algorithm
run: make test