standard dev-resources and rm deprecated project meta #16
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: Cronut Test | |
| on: [push] | |
| jobs: | |
| clojure: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Java11 | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '11' | |
| - name: Install Clojure tools | |
| uses: DeLaGuardo/[email protected] | |
| with: | |
| lein: 'latest' | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Deps | |
| working-directory: ./ | |
| run: lein deps | |
| - name: Smoke | |
| working-directory: ./ | |
| run: lein smoke |