Skip to content

Map ephemeral Fly.io preview hosts to a shared authorization namespace #693

Map ephemeral Fly.io preview hosts to a shared authorization namespace

Map ephemeral Fly.io preview hosts to a shared authorization namespace #693

Workflow file for this run

name: Clojure CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.5
with:
# Install just one or all simultaneously
# The value must indicate a particular version of the tool, or use 'latest'
# to always provision the latest version
cli: 'latest' # Clojure CLI based on tools.deps
- name: Cache maven artifacts
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('deps.edn') }}
restore-keys: maven-
- name: Compile
run: ./bin/compile
- name: Run tests
run: ./bin/test