Skip to content

Commit

Permalink
Merge branch 'main' into loopy-loop
Browse files Browse the repository at this point in the history
  • Loading branch information
kradalby authored Oct 7, 2021
2 parents f0c5449 + 1340617 commit e4f197b
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "1.16.3"

- name: Install dependencies
run: |
go version
go install golang.org/x/lint/golint@latest
sudo apt update
sudo apt install -y make
- name: Run lint
run: make build

- uses: actions/upload-artifact@v2
with:
name: headscale-linux
path: headscale

0 comments on commit e4f197b

Please sign in to comment.