Skip to content

fix multiline archive and tags #10

fix multiline archive and tags

fix multiline archive and tags #10

Workflow file for this run

name: Build and Test
on: [push]
jobs:
clojure:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: 'microsoft'
java-version: '17'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.1
with:
cli: 1.11.1.1347
- name: Cache clojure dependencies
uses: actions/cache@v3
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
# List all files containing dependencies:
key: cljdeps-${{ hashFiles('project.clj') }}
restore-keys: cljdeps-
- run: npm i
- name: Run tests
run: npm test