-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
30 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 |
---|---|---|
|
@@ -2,50 +2,52 @@ name: Crystal CI | |
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
check_format: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: crystallang/crystal | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: shards install --ignore-crystal-version | ||
- name: Install Crystal | ||
uses: crystal-lang/install-crystal@v1 | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Check format | ||
run: crystal tool format --check | ||
|
||
check_ameba: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: crystallang/crystal | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: shards install --ignore-crystal-version | ||
- name: Check ameba | ||
run: ./bin/ameba | ||
test_latest: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: crystallang/crystal | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: shards install --ignore-crystal-version | ||
- name: Run tests | ||
run: crystal spec | ||
test_nightly: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: crystallang/crystal:nightly | ||
- name: Install Crystal | ||
uses: crystal-lang/install-crystal@v1 | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Crystal Ameba Linter | ||
id: crystal-ameba | ||
uses: crystal-ameba/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- {os: ubuntu-latest, crystal: latest} | ||
- {os: ubuntu-latest, crystal: nightly} | ||
- {os: macos-latest} | ||
- {os: macos-14} | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Crystal | ||
uses: crystal-lang/install-crystal@v1 | ||
with: | ||
crystal: ${{ matrix.crystal }} | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: shards install --ignore-crystal-version | ||
run: shards install --skip-postinstall --skip-executables | ||
- name: Run tests | ||
run: crystal spec |