Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Sija committed Jan 14, 2021
1 parent 1e51c9c commit 3f029b0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ on:
push:
pull_request:
schedule:
- cron: '0 6 * * 1' # Every monday 6 AM
- cron: "0 6 * * 1" # Every monday 6 AM

jobs:
build:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
crystal: [null]
os: [ubuntu-latest, macos-latest]
crystal: [latest, nightly]
include:
- os: ubuntu-latest
crystal: nightly
runs-on: ${{matrix.os}}
- os: windows-latest
crystal: latest
runs-on: ${{ matrix.os }}

steps:
- name: Configure Git
Expand All @@ -29,15 +29,15 @@ jobs:
- name: Install Crystal
uses: oprypin/install-crystal@v1
with:
crystal: ${{matrix.crystal}}
crystal: ${{ matrix.crystal }}

- name: Download source
uses: actions/checkout@v2

- name: Build
run: make

- name: Test
- name: Run specs
run: make test

- name: Check formatting
Expand Down

0 comments on commit 3f029b0

Please sign in to comment.