Skip to content

Commit

Permalink
Run automated test on Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Jan 28, 2025
1 parent fdfdb83 commit 3b4d2dd
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
echo $Env:GOPATH
- name: Install gox
run: go install github.com/mitchellh/gox@latest
- name: Run test
run: cd webextensions/native-messaging-host && go mod tidy && make test
- name: Make xpi
run: cd webextensions && make && cp *.xpi ..\
- name: Make Installer
Expand All @@ -44,4 +42,16 @@ jobs:
*.xpi
*.zip
*.msi
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 'stable'
- run: go version
- name: Install dependencies
run: cd webextensions && npm install && cd native-messaging-host && go mod tidy
- name: Run test
run: make test

0 comments on commit 3b4d2dd

Please sign in to comment.