Skip to content

更新内容

更新内容 #88

Workflow file for this run

name: golang check
on:
push:
branches: [ "master" ]
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
- name: set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.0'
- name: check github
run: |
set -x
cd github
go build -o test
- name: check gox
run: |
set -x
cd gox
go build -o test
- name: check poc-runner
run: |
set -x
cd cmd
go build -o test