Skip to content

Improved test partitioning: keep namespaces grouped together and don't sort tests #101

Improved test partitioning: keep namespaces grouped together and don't sort tests

Improved test partitioning: keep namespaces grouped together and don't sort tests #101

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
kondo:
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/setup
with:
cache-key: kondo
- name: Run Kondo
run: >-
clojure -M:kondo --lint src test
tests:
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/setup
with:
cache-key: tests
- name: Run tests
run: >-
clojure -X:dev:test
env:
CI: TRUE