Skip to content

feat: test building native clojure app using library, test with graalvm #8

feat: test building native clojure app using library, test with graalvm

feat: test building native clojure app using library, test with graalvm #8

Workflow file for this run

name: Clojure CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Mise-en-place setup
uses: jdx/mise-action@v2
with:
install: true
cache: true
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.1
with:
# see: https://github.com/marketplace/actions/setup-clojure
cli: 1.11.1.1429
- name: Run tests
run: make test
- name: Run clj-kondo linter
run: make lint
- name: Run build jar
run: make build
- name: Run build app
run: make build-native