mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 23:34:26 +00:00
31 lines
520 B
YAML
31 lines
520 B
YAML
name: "Quick build test"
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
|
|
jobs:
|
|
quick-build-test:
|
|
runs-on: "ubuntu-latest"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.19
|
|
|
|
- name: "Build"
|
|
run: "touch bindata/* bindata/*/* ; make"
|
|
|
|
- name: Upload linux/amd64 artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: gotty-linux-amd64
|
|
path: gotty
|