Skip to content

Commit

Permalink
chore: run actions in both linux and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
manolo committed Aug 6, 2023
1 parent d7ae6a5 commit 610e5d9
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,18 @@ on:
pull_request:
permissions:
contents: read
defaults:
run:
shell: bash
concurrency:
group: ${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu, windows]
runs-on: ${{ matrix.os }}-latest
permissions:
# for EnricoMi/publish-unit-test-result-action
issues: read
Expand Down Expand Up @@ -41,8 +50,7 @@ jobs:
run: |
mvn -B -V -ntp verify -Dcom.vaadin.testbench.Parameters.headless
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "**/target/*-reports/TEST*.xml"
check_run_annotations: all tests, skipped tests
check_run_annotations_branch: v24

0 comments on commit 610e5d9

Please sign in to comment.