We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee17c9d commit fbc8ef7Copy full SHA for fbc8ef7
1 file changed
.github/workflows/crystal.yml
@@ -0,0 +1,22 @@
1
+name: Crystal CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ container:
15
+ image: crystallang/crystal
16
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - name: Install dependencies
20
+ run: shards install
21
+ - name: Run tests
22
+ run: crystal spec
0 commit comments