Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ysavchen committed Dec 28, 2024
1 parent 9c352e9 commit 843ae3b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/algorithms.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build algorithms

on:
push:
branches: [ main ]

jobs:
algorithms:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'

- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: "8.11.1"

- name: Build algorithms
run: gradle build

0 comments on commit 843ae3b

Please sign in to comment.