mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2025-03-01 21:31:10 +01:00
22 lines
334 B
YAML
22 lines
334 B
YAML
|
name: Go
|
||
|
|
||
|
on:
|
||
|
- workflow_dispatch
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Set up Go
|
||
|
uses: actions/setup-go@v2
|
||
|
with:
|
||
|
go-version: 1.17
|
||
|
- name: Install requirements
|
||
|
run: sudo apt-get install -y wireguard-tools
|
||
|
|
||
|
- name: Build
|
||
|
run: make
|