Skip to content

Commit

Permalink
Update GitHub workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed Aug 13, 2023
1 parent 65e5625 commit 25ea2c7
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/main.linux.temurin.current.yml
Expand Up @@ -14,7 +14,13 @@ jobs:
- name: JDK
uses: actions/setup-java@v3
with:
java-version: 19
java-version: 20
distribution: 'temurin'
- name: Build
run: mvn --errors clean verify site
- name: Upload test logs
uses: actions/upload-artifact@v3
if: always()
with:
name: test-logs
path: ./com.io7m.rivershark.tests/target/surefire-reports
6 changes: 6 additions & 0 deletions .github/workflows/main.linux.temurin.lts.yml
Expand Up @@ -18,6 +18,12 @@ jobs:
distribution: 'temurin'
- name: Build
run: mvn --errors clean verify site
- name: Upload test logs
uses: actions/upload-artifact@v3
if: always()
with:
name: test-logs
path: ./com.io7m.rivershark.tests/target/surefire-reports
- name: Coverage
uses: codecov/codecov-action@v1
with:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/main.windows.temurin.current.yml
Expand Up @@ -14,7 +14,13 @@ jobs:
- name: JDK
uses: actions/setup-java@v3
with:
java-version: 19
java-version: 20
distribution: 'temurin'
- name: Build
run: mvn --errors clean verify site
- name: Upload test logs
uses: actions/upload-artifact@v3
if: always()
with:
name: test-logs
path: ./com.io7m.rivershark.tests/target/surefire-reports
6 changes: 6 additions & 0 deletions .github/workflows/main.windows.temurin.lts.yml
Expand Up @@ -18,3 +18,9 @@ jobs:
distribution: 'temurin'
- name: Build
run: mvn --errors clean verify site
- name: Upload test logs
uses: actions/upload-artifact@v3
if: always()
with:
name: test-logs
path: ./com.io7m.rivershark.tests/target/surefire-reports

0 comments on commit 25ea2c7

Please sign in to comment.