-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate continuous testing to GitHub Actions (#147)
* crystal tool format * Migrate continuous testing to GitHub Actions
- Loading branch information
Showing
3 changed files
with
34 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
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: [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 != 'nightly' && matrix.os == 'ubuntu-latest' |
This file was deleted.
Oops, something went wrong.
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