Deploy build #3
This file contains 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: Run tests | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
env: | ||
ACTIONS_CACHE_VERSION: 0 | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
jdk: [8, 11, 17, 21] | ||
name: Java ${{ matrix.jdk }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Java ${{ matrix.jdk }} | ||
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: ${{ matrix.jdk }} | ||
- name: Maven Cache | ||
id: maven-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.m2/repository | ||
~/.gitlibs | ||
key: m2-cache-${{ env.ACTIONS_CACHE_VERSION }}-${{ hashFiles('project.clj') }}-${{ matrix.jdk }} | ||
restore-keys: | | ||
m2-cache-${{ env.ACTIONS_CACHE_VERSION }}-${{ hashFiles('project.clj') }}- | ||
m2-cache-${{ env.ACTIONS_CACHE_VERSION }}- | ||
- name: Setup Clojure | ||
uses: DeLaGuardo/setup-clojure@master | ||
with: | ||
lein: latest | ||
- name: Run tests | ||
run: lein do clean, all midje, all check | ||
deploy: | ||
concurrency: deploy | ||
needs: test | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/project.clj') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- uses: turtlequeue/setup-babashka@5e0acf2cf146558d93a573e339e1d24f2758adfd | ||
with: | ||
babashka-version: ${{env.BABASHKA_VERSION}} | ||
- name: Prepare java | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '11' | ||
- name: Configure settings.xml | ||
run: | | ||
mkdir -p ~/.m2 | ||
echo "<settings><servers><server></id><username>${{ secrets.CLOJARS_USER }}</username><password>${{ secrets.CLOJARS_TOKEN }}</password></server></servers></settings>" > ~/.m2/settings.xml | ||
- name: deploy | ||
env: | ||
COMMIT_MSG: ${{ github.event.head_commit.message }} | ||
run: | | ||
if [[ "$COMMIT_MSG" == "Release :major" ]]; then | ||
lein release :major | ||
elif [[ "$COMMIT_MSG" == "Release :minor" ]]; then | ||
lein release :minor | ||
elif [[ "$COMMIT_MSG" == "Release :patch" ]]; then | ||
lein release :patch | ||
else | ||
lein deploy snapshot | ||
fi | ||
- run: rm -f ~/.m2/settings.xml | ||
if: ${{ always }} | ||
Check failure on line 88 in .github/workflows/clojure.yml GitHub Actions / Run testsInvalid workflow file
|