gitc alias #115
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: CI | |
on: push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: lint | |
run: make lint | |
# We could just run ./bootstrap, but running the targets individually will show each step in the logs. | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make install | |
- run: sudo make apt | |
- run: sudo make npm | |
- run: make linux-conda | |
- run: make installcheck | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make install | |
# The macOS environment should already have `brew` installed. | |
- run: make brew | |
- run: make npm | |
- run: make macos-conda | |
- run: make installcheck |