mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
3a53a69f83
Add explicit 1.0.0 to version matrix. Formatter check should only run on latest.
33 lines
710 B
YAML
33 lines
710 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [master]
|
|
schedule:
|
|
- cron: '0 6 * * 1' # Every monday 6 AM
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
crystal: [1.0.0, latest, nightly]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- name: Install Crystal
|
|
uses: oprypin/install-crystal@v1
|
|
with:
|
|
crystal: ${{ matrix.crystal }}
|
|
|
|
- name: Download source
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run specs
|
|
run: crystal spec
|
|
|
|
- name: Check formatting
|
|
run: crystal tool format; git diff --exit-code
|
|
if: matrix.crystal == 'latest' && matrix.os == 'ubuntu-latest'
|