add some type hints to reduce reflection needs #33
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'corretto' | |
| java-version: '24' | |
| - name: Setup Clojure | |
| uses: DeLaGuardo/[email protected] | |
| with: | |
| lein: 2.11.2 | |
| - name: Clojure Dependencies Cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.m2/repository | |
| ~/.gitlibs | |
| key: clojure-${{ hashFiles('project.clj') }} | |
| restore-keys: clojure- | |
| - name: Run tests | |
| run: lein test |