8000 The `Action` set might be `reload` and that would not start the unit. (#80) · miekg/gitopper@73ab28f · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

The Action set might be reload and that would not start the unit.… #283

The Action set might be reload and that would not start the unit.…

The Action set might be reload and that would not start the unit.… #283

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ 1.22.x ]
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
0