Bump metafacture-core dependency to 7.0.0 (#221) #414
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: Clojure/Clojurescript Build | |
| on: | |
| push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 11 | |
| #- name: Checkout metafacture-core | |
| # uses: actions/checkout@v2 | |
| # with: | |
| # path: metafacture-core | |
| # repository: metafacture/metafacture-core | |
| # ref: master | |
| # - name: Install metafacture-core | |
| # working-directory: metafacture-core | |
| # run: ./gradlew install | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v2 | |
| - uses: actions/checkout@v2 | |
| # Setup Leiningen. Also supports setting up other commonly used tools. | |
| - name: Install clojure tools | |
| uses: DeLaGuardo/[email protected] | |
| with: | |
| lein: 2.9.1 | |
| # Enable cache so our actions run faster. | |
| - name: Cache clojure dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.m2/repository | |
| key: cljdeps-${{ hashFiles('project.clj') }} | |
| restore-keys: cljdeps- | |
| - name: Install dependencies | |
| run: lein deps | |
| - name: Build cljs | |
| run: lein release | |
| - name: Build clj | |
| run: lein uberjar |