mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 02:03:21 +01:00
18 lines
285 B
YAML
18 lines
285 B
YAML
|
name: tests
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
container:
|
||
|
image: crystallang/crystal
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Run tests
|
||
|
run: crystal spec tests/main.cr
|