Skip to content

Commit

Permalink
Update github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Jan 10, 2025
1 parent e6b5014 commit 799c45e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/java21.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Java 21
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Azul JDK 21
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: mvn test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MacOS x64
name: MacOS arm64
on:
- push
- workflow_dispatch
Expand All @@ -7,7 +7,7 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up Azul JDK 8
- name: Set up Azul JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-x64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Azul JDK 8
- name: Set up Azul JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
[![Java 8](https://img.shields.io/github/actions/workflow/status/fizzed/stork/java8.yaml?branch=master&label=Java%208&style=flat-square)](https://github.com/fizzed/stork/actions/workflows/java8.yaml)
[![Java 11](https://img.shields.io/github/actions/workflow/status/fizzed/stork/java11.yaml?branch=master&label=Java%2011&style=flat-square)](https://github.com/fizzed/stork/actions/workflows/java11.yaml)
[![Java 17](https://img.shields.io/github/actions/workflow/status/fizzed/stork/java17.yaml?branch=master&label=Java%2017&style=flat-square)](https://github.com/fizzed/stork/actions/workflows/java17.yaml)
[![Java 21](https://img.shields.io/github/actions/workflow/status/fizzed/stork/java21.yaml?branch=master&label=Java%2021&style=flat-square)](https://github.com/fizzed/stork/actions/workflows/java21.yaml)

[![Linux x64](https://img.shields.io/github/actions/workflow/status/fizzed/stork/java11.yaml?branch=master&label=Linux%20x64&style=flat-square)](https://github.com/fizzed/stork/actions/workflows/java11.yaml)
[![MacOS x64](https://img.shields.io/github/actions/workflow/status/fizzed/stork/macos-x64.yaml?branch=master&label=MacOS%20x64&style=flat-square)](https://github.com/fizzed/stork/actions/workflows/macos-x64.yaml)
[![MacOS arm64](https://img.shields.io/github/actions/workflow/status/fizzed/stork/macos-arm64.yaml?branch=master&label=MacOS%20arm64&style=flat-square)](https://github.com/fizzed/stork/actions/workflows/macos-arm64.yaml)
[![Windows x64](https://img.shields.io/github/actions/workflow/status/fizzed/stork/windows-x64.yaml?branch=master&label=Windows%20x64&style=flat-square)](https://github.com/fizzed/stork/actions/workflows/windows-x64.yaml)

## Overview
Expand Down

0 comments on commit 799c45e

Please sign in to comment.