Release workflow requires CI task to be run first #6
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: Clojure CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install Clojure | |
run: | | |
curl -L -O https://github.com/clojure/brew-install/releases/latest/download/linux-install.sh | |
chmod +x linux-install.sh | |
sudo ./linux-install.sh | |
- name: Run build | |
run: clojure -T:build ci |