feat(ci): arm builds, push multiple registries

Release-As: 0.13.0
This commit is contained in:
sentriz
2021-05-08 19:07:31 +01:00
parent c2c7eb249f
commit 06226724b7
6 changed files with 112 additions and 109 deletions

29
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,29 @@
name: Lint and test
on:
push:
branches:
- master
- develop
pull_request:
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: Install dependencies
run: |
sudo apt update -qq
sudo apt install -y -qq build-essential git sqlite libtag1-dev ffmpeg libasound-dev
- name: Lint
uses: golangci/golangci-lint-action@v2
with:
version: latest
skip-go-installation: true
- name: Test
run: go test ./...