Skip to content

Merge pull request #4 from ownerofglory/feature/adjust-readme #9

Merge pull request #4 from ownerofglory/feature/adjust-readme

Merge pull request #4 from ownerofglory/feature/adjust-readme #9

Workflow file for this run

name: Test pipeline
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: go mod download
- name: Test with the Go CLI
run: go test ./...