Skip to content

Add an Actions workflow for tests #1

Add an Actions workflow for tests

Add an Actions workflow for tests #1

Workflow file for this run

name: lein all test
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install dependencies
run: lein deps
- name: Run tests
run: lein all test