-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate nightly CI runs into a separate workflow. (#624)
- Loading branch information
1 parent
c104ab3
commit 8908ef4
Showing
2 changed files
with
56 additions
and
4 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,55 @@ | ||
name: CI Nightly | ||
|
||
on: | ||
schedule: | ||
- cron: "0 6 * * 1" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
name: Test | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Install Crystal | ||
uses: crystal-lang/install-crystal@v1 | ||
with: | ||
crystal: nightly | ||
|
||
- name: Download source | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: shards install | ||
|
||
- name: Run specs | ||
run: crystal spec --error-on-warnings --error-trace | ||
|
||
- name: Build the binary | ||
run: shards build --error-on-warnings --error-trace | ||
|
||
- name: Run core specs (Firefox) | ||
working-directory: ./core/tests | ||
run: ../../bin/mint test -b firefox | ||
|
||
- name: Run core specs (Google Chrome) | ||
working-directory: ./core/tests | ||
run: ../../bin/mint test -b chrome | ||
|
||
- name: Check formatting (Mint) | ||
working-directory: ./core | ||
run: ../bin/mint format --check | ||
|
||
- name: Check formatting (Mint tests) | ||
working-directory: ./core/tests | ||
run: ../../bin/mint format --check | ||
|
||
- name: Check formatting (Crystal) | ||
run: crystal tool format --check | ||
|
||
- name: Run ameba | ||
run: bin/ameba |
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