11 lines
174 B
YAML
11 lines
174 B
YAML
|
name: Build
|
||
|
run-name: ${{ gitea.actor }} is building
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
Build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- run: go mod tidy
|
||
|
- run: go build -o gspot
|