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:
parent
c50aa9e135
commit
e8e5a11389
1 changed files with 4 additions and 1 deletions
5
.github/workflows/tests.yml
vendored
5
.github/workflows/tests.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue