CI #60
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: | |
pull_request: | |
schedule: | |
- cron: '0 7 * * 1' | |
jobs: | |
unit-test: | |
name: build and unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Crystal | |
run: | | |
curl -sSL https://dist.crystal-lang.org/apt/setup.sh | sudo bash | |
sudo apt install crystal | |
crystal --version | |
shards --version | |
- run: shards install | |
- run: crystal build src/sendgrid.cr | |
- run: crystal spec |