1
0
Fork 0

Add Ubuntu build for GitHub Actions

timestamps
dump_stack() 2019-08-31 09:04:46 +00:00
parent bf90a10692
commit 950b1e5e83
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 23 additions and 0 deletions

23
.github/workflows/ubuntu.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Ubuntu
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: go build
- name: Install dependencies for tests
run: |
sudo apt-get update
sudo apt-get install qemu
- name: Bootstrap
run: ./tools/qemu-debian-img/bootstrap.sh
- name: Test
run: go test -parallel 1 -v ./...