Skip to content

Commit

Permalink
clinic: add github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshgngwr committed Oct 4, 2023
1 parent 6783a1a commit 99fd910
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/clinic.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Clinic
on:
push:
branches:
- main
tags:
- "**"
paths-ignore:
- "**.md"
pull_request:
branches:
- main

env:
JDK_DISTRIBUTION: temurin
JAVA_VERSION: 17

jobs:
clj-tests:
name: Clojure Tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: ${{ env.JDK_DISTRIBUTION }}
java-version: ${{ env.JAVA_VERSION }}
- run: lein test

0 comments on commit 99fd910

Please sign in to comment.