Crystal CI #1213
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: Crystal CI | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {os: ubuntu-latest, crystal: latest} | |
# Ameba is broken on nightly builds | |
# - {os: ubuntu-latest, crystal: nightly} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install package dependencies | |
run: sudo apt-get install gobject-introspection libgirepository1.0-dev | |
- name: Install Crystal | |
uses: crystal-lang/install-crystal@v1 | |
with: | |
crystal: ${{ matrix.crystal }} | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Install crystal dependencies | |
run: shards install | |
- name: Linter | |
run: crystal tool format --check | |
- name: Run tests | |
run: G_DEBUG=fatal-warnings RSPEC_OPTS="-v --order=random" make oldlibs-test | |
- name: Run tests with -Ddebugmemory | |
run: G_DEBUG=fatal-warnings OLD_LIBS=1 ./bin/spec -Ddebugmemory -v --order=random |