bump version #125
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
on: | |
push: | |
pull_request: | |
branches: [master] | |
jobs: | |
verify-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download source | |
uses: actions/checkout@v2 | |
- name: Install Crystal | |
uses: crystal-lang/install-crystal@v1 | |
- name: Install libharu | |
run: sudo apt install libhpdf-dev | |
- name: Install development dependencies | |
run: shards install | |
- name: Run tests | |
run: make lint spec | |
- name: Run examples | |
run: make examples | |
- name: Make sure the files are formatted | |
run: crystal tool format --check | |
verify-macos: | |
runs-on: macos-latest | |
steps: | |
- name: Download source | |
uses: actions/checkout@v2 | |
- name: Install libharu / crystal | |
run: brew install libharu crystal libpng | |
- name: Run tests | |
run: make examples spec |