Skip to content

first test

first test #1

Workflow file for this run

name: test
on:
push:
branches:
- '**'
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
goTest:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 'stable'
cache: false
- name: test
run: go test ./... -count=1