Merge pull request #15 from iv-org/syeopite-patch-1

This commit is contained in:
Émilien Devos 2021-10-15 15:52:28 +02:00 committed by GitHub
commit c273c83b98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 12 deletions

View File

@ -1,40 +1,59 @@
name: lsquic.cr CI name: lsquic.cr CI
on: on:
schedule:
- cron: "0 0 * * *" # Every day at 00:00
push: push:
branches: branches:
- "master" - "master"
- "api-only"
pull_request: pull_request:
branches: "*" branches: "*"
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
name: "build - crystal: ${{ matrix.crystal }}, stable: ${{ matrix.stable }}"
continue-on-error: ${{ !matrix.stable }}
strategy:
fail-fast: false
matrix:
stable: [true]
crystal:
- 1.0.0
- 1.1.1
- 1.2.0
include:
- crystal: nightly
stable: false
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install Crystal - name: Install Crystal
uses: oprypin/install-crystal@v1.2.4 uses: crystal-lang/install-crystal@v1.5.3
with: with:
crystal: 1.0.0 crystal: ${{ matrix.crystal }}
- name: Cache Shards - name: Cache Shards
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: ./lib path: ./lib
key: shards-${{ hashFiles('shard.lock') }} key: shards-${{ hashFiles('shard.lock') }}
- name: Install Shards - name: Install Shards
run: | run: |
if ! shards check; then if ! shards check; then
shards install shards install
fi fi
- name: Run tests - name: Run tests
run: crystal spec run: crystal spec --warnings all --error-on-warnings --error-trace
- name: Run lint - name: Run lint
run: | run: |
if ! crystal tool format --check; then if ! crystal tool format --check; then
@ -42,7 +61,6 @@ jobs:
git diff git diff
exit 1 exit 1
fi fi
- name: Build - name: Build
run: crystal build --warnings all --error-on-warnings --error-trace src/lsquic.cr run: crystal build --warnings all --error-on-warnings --error-trace src/lsquic.cr