Bump rlespinasse/github-slug-action from 4 to 5 #1155
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
release: | |
types: [published] | |
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: latest | |
- name: Download source | |
uses: actions/checkout@v4 | |
- 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 |