Skip to content

Commit

Permalink
Fix Github Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
knokko committed Aug 10, 2024
1 parent c0fffad commit 869f0f6
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Testing with Java 17 and Java 21 on Linux

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
on: [push, pull_request]

permissions:
contents: read
Expand All @@ -18,8 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: sudo apt update
- run: sudo apt install vulkan-validationlayers
- run: sudo apt install mesa-vulkan-drivers
- run: sudo apt install -y vulkan-validationlayers
- run: sudo apt install -y mesa-vulkan-drivers
- run: sudo apt install -y vulkan-tools
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v3
with:
Expand Down

0 comments on commit 869f0f6

Please sign in to comment.