-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Sija/develop
v2.0.1
- Loading branch information
Showing
4 changed files
with
48 additions
and
22 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,44 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: "0 3 * * 1" # Every monday at 3 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: Install dependencies | ||
run: shards install | ||
env: | ||
SHARDS_OPTS: --ignore-crystal-version | ||
|
||
- name: Run specs | ||
run: crystal spec | ||
|
||
- name: Run specs (DEBUG=1) | ||
run: crystal spec | ||
env: | ||
DEBUG: "1" | ||
|
||
- name: Check formatting | ||
run: crystal tool format --check | ||
|
||
- name: Run ameba linter | ||
run: bin/ameba |
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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: debug | ||
version: 2.0.0 | ||
version: 2.0.1 | ||
|
||
authors: | ||
- Sijawusz Pur Rahnama <[email protected]> | ||
|
||
development_dependencies: | ||
ameba: | ||
github: crystal-ameba/ameba | ||
version: ~> 0.13.0 | ||
version: ~> 0.14.0 | ||
|
||
crystal: 0.35.0 | ||
crystal: ">= 0.35.1" | ||
|
||
license: MIT |