mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 21:05:30 +00:00
switch workflow to just test
This commit is contained in:
29
.github/workflows/test-showbridge.yaml
vendored
Normal file
29
.github/workflows/test-showbridge.yaml
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
name: Test showbridge
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install alsa
|
||||
run: sudo apt-get install -y libasound2-dev
|
||||
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version-file: 'go.mod'
|
||||
- name: mod tidy
|
||||
run: go mod tidy
|
||||
|
||||
- name: run tests
|
||||
run: go test ./...
|
||||
Reference in New Issue
Block a user