Skip to content

fix: change github workflow condition #73

fix: change github workflow condition

fix: change github workflow condition #73

Workflow file for this run

name: go-test
on:
push:
branches:
# All branches except main
- '*'
pull_request:
branches:
# All branches except main
- '*'
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Run go test
run: go test ./...