Make project.clj deps match deps.edn (#1104) #86
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: Build and Test Planck | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build_macos: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Install Clojure | |
uses: DeLaGuardo/[email protected] | |
with: | |
cli: latest | |
- name: Build and Test Planck | |
run: | | |
script/build -Werror --fast | |
script/test | |
build_ubuntu: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Install Clojure | |
uses: DeLaGuardo/[email protected] | |
with: | |
cli: latest | |
- name: Install deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libjavascriptcoregtk-4.0 libglib2.0-dev libzip-dev libcurl4-gnutls-dev libicu-dev unzip | |
- name: Build and Test Planck | |
run: | | |
script/build -Werror --fast | |
script/test |