Skip to content

Commit

Permalink
Try some other things with the main test pipeline
Browse files Browse the repository at this point in the history
First, see if I can get by without the libunwind-dev hack. I don't even
remember the exact issue, or where I found this solution.

Second, always use the latest stable version of Go instead of having to
change this all the time.
  • Loading branch information
ahamlinman committed Jan 5, 2025
1 parent 5cfba4b commit c78699c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
go-version: stable
- name: Install libgstreamer1.0-dev
run: |
sudo apt-get update -y
sudo apt-get install -y libunwind-dev
sudo apt-get install -y --no-install-recommends libgstreamer1.0-dev
- name: Run Tests
run: go test -v -count 2 -race ./...
Expand Down

0 comments on commit c78699c

Please sign in to comment.