Skip to content

Commit

Permalink
[enh] add tests github action
Browse files Browse the repository at this point in the history
  • Loading branch information
asciimoo committed May 2, 2022
1 parent 79ed517 commit 4419a38
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: tests
on:
push:
tags:
- v*
branches:
- master
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
- uses: actions/checkout@v2
- run: ./manage.sh run_unit_tests
end2end:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: ./manage.sh install_js_deps
- run: ./manage.sh install_test_deps
- run: ./manage.sh build_addon
- run: xvfb-run --auto-servernum ./manage.sh run_e2e_tests

0 comments on commit 4419a38

Please sign in to comment.