Skip to content

Commit

Permalink
run tests with deps insteadof lein
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarroway committed Jun 29, 2024
1 parent f740aa7 commit de21ed9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@ jobs:

strategy:
matrix:
distribution: [ 'zulu' ]
java: [ '11', '17' ]
distribution: [ 'temurin' ]
java: [ '11', '17', '21' ]

name: Java ${{ matrix.Java }} (${{ matrix.distribution }})

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Prepare java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@9.5
uses: DeLaGuardo/setup-clojure@12.5
with:
lein: 2.9.10
cli: 1.11.3.1463

- name: Test with lein
run: lein test
- name: Test with deps
run: clojure -X:test

publish:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. This change
## [Unreleased]
### Changed
- updated various dev dependencies
- run tests with deps instead of lein

### Fixed
- shutdown threadpool in custom executor test so test finishes cleanly
Expand Down

0 comments on commit de21ed9

Please sign in to comment.