testcontainers-clj/.github/actions/setup-build/action.yml
Eddú Meléndez 224aeeebbe
Add release workflow
Release workflow will deploy artifacts to `clojars` and `maven`.
2023-08-23 21:57:59 -06:00

18 lines
500 B
YAML

name: Set up Build
description: Sets up Build
runs:
using: "composite"
steps:
- uses: actions/setup-java@v3
with:
java-version: '8'
distribution: temurin
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-lein-${{ hashFiles('**/project.clj') }}
restore-keys: ${{ runner.os }}-lein-
- name: Clear existing docker image cache
shell: bash
run: docker image prune -af