Skip to content

Commit

Permalink
Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Smet committed Oct 17, 2023
1 parent e794b7e commit ffce332
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Clojure CI

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

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Prepare Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '8'

- name: Install Clojure tools
uses: DeLaGuardo/setup-clojure@12.1
with:
cli: 'latest'
bb: 'latest'
cljfmt: 'latest'

- name: Codestyle
run: bb lint:cs:check

- name: Unit tests
run: bb test

0 comments on commit ffce332

Please sign in to comment.