Skip to content

Commit

Permalink
run self hosted gh action test
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpaulus committed Oct 14, 2024
1 parent 983f0eb commit 2455884
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,33 @@ jobs:
cache: true

#- name: Install Libusb
# run: choco install
# run: choco install

- name: Build executable
run: go build

#- name: Run fast tests
# run: go test -v -tags=fast ./...
test_with_device:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
- name: update
run: sudo apt-get update

- name: install libusb
run: sudo apt-get install -y libusb-1.0-0-dev

- name: Build executable
run: make build --trace
- name: test ios list
run: go run main.go list

test_on_linux:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2455884

Please sign in to comment.