Skip to content

Commit 202da34

Browse files
Merge pull request #2 from crystal-lang-tools/stdlib-coverage
Stdlib coverage
2 parents 074d20d + 2603c47 commit 202da34

File tree

5 files changed

+1190
-926
lines changed

5 files changed

+1190
-926
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@ name: CI
22

33
on:
44
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
510

611
jobs:
7-
corpus-tests:
12+
test:
813
runs-on: ubuntu-latest
914
steps:
1015
- name: Checkout
@@ -13,9 +18,17 @@ jobs:
1318
- name: Download Tree-sitter
1419
run: .github/workflows/install-tree-sitter.sh v0.24.4
1520

16-
- name: Run tests
21+
- name: Install Crystal
22+
uses: crystal-lang/install-crystal@v1
23+
with:
24+
crystal: latest
25+
26+
- name: Run tree-sitter tests
1727
run: tree-sitter test
1828

29+
- name: Run stdlib coverage
30+
run: crystal run test/stdlib_coverage.cr
31+
1932
generate:
2033
runs-on: ubuntu-latest
2134
steps:

0 commit comments

Comments
 (0)