Skip to content

Commit

Permalink
ci: add test task on github
Browse files Browse the repository at this point in the history
  • Loading branch information
initdc committed Mar 4, 2024
1 parent 565355a commit 173231a
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This CI job installs Crystal and shard dependencies, then executes `crystal spec` to run the test suite
# More configuration options are available at https://crystal-lang.github.io/install-crystal/configurator.html

name: Exec Lib

on:
workflow_dispatch:
pull_request:
push:
branches:
- master
- dev

concurrency:
group: ${{ github.sha }}
cancel-in-progress: true

jobs:
test:
strategy:
matrix:
crystal:
- "1.0.0"
- latest
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v4
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Install shards
run: shards update --ignore-crystal-version
- name: Check formatting
run: crystal tool format --check
- name: Run tests
run: crystal spec --order=random

0 comments on commit 173231a

Please sign in to comment.