Skip to content

Commit

Permalink
Adds CI task
Browse files Browse the repository at this point in the history
  • Loading branch information
fr33m0nk authored Feb 23, 2024
1 parent 570c75b commit 8504a03
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Clojure CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install Clojure Deps
run: |
curl -O https://download.clojure.org/install/linux-install-1.11.1.1105.sh
chmod +x linux-install-1.11.1.1105.sh
sudo ./linux-install-1.11.1.1105.sh
- name: Test run
run: clojure -A:deps -T:build ci

0 comments on commit 8504a03

Please sign in to comment.