Fixed method detail matching to support fully qualified type names #17
Workflow file for this run
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
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| - name: Install CLI | |
| run: | | |
| curl -L -O https://github.com/clojure/brew-install/releases/latest/download/posix-install.sh | |
| chmod +x posix-install.sh | |
| sudo ./posix-install.sh | |
| clojure | |
| - name: Run tests | |
| run: clojure -M:test |