Fix dropdown menus in custom item builder unable to change from default values #32
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: Continuous Integration | |
| on: | |
| pull_request: | |
| branches: [develop] | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| name: Run Linter and Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Prepare java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 8.0.292 | |
| - name: Load pdfbox from /lib | |
| run: mkdir ~/.m2/repository/ && mkdir ~/.m2/repository/org/ && cp -rv ./lib/* ~/.m2/repository | |
| - name: ls .m2 | |
| run: ls -la ~/.m2/repository/org/ | |
| - name: Install clojure tools | |
| uses: DeLaGuardo/setup-clojure@11.0 | |
| with: | |
| # Install just one or all simultaneously | |
| cli: 1.10.1.693 # Clojure CLI based on tools.deps | |
| lein: 2.9.1 # or use 'latest' to always provision latest version of leiningen | |
| boot: 2.8.3 # or use 'latest' to always provision latest version of boot | |
| - name: Get leiningen version | |
| run: lein -v | |
| - name: Run linter | |
| run: lein lint | |
| - name: Run tests | |
| run: lein test |