github-action: run unit tests

There should be no need to run unit tests on specific architectures,
move it over to github-actions and rename "Lint" to "Checks" as it
is a bit more generic now.

Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
Tom Gundersen 2020-03-10 22:50:16 +01:00
parent c50aa9e135
commit e8e5a11389

View file

@ -12,7 +12,7 @@ on:
jobs:
lint:
name: "🛃 Lint"
name: "🛃 Checks"
runs-on: ubuntu-latest
steps:
@ -43,6 +43,9 @@ jobs:
- name: Run golangci-lint
run: $(go env GOPATH)/bin/golangci-lint run
- name: Run unit tests
run: go test -v ./...
rpm_build:
name: "📦 RPM"
runs-on: ubuntu-latest