Skip to content

Commit

Permalink
fix: new Crystal version and Coveralls parser (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexox authored Jul 12, 2023
1 parent 2a1cac4 commit 2f6dff8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: 1.8
crystal: 1.9

- run: shards install --production

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: 1.8
crystal: 1.9

- name: Build (Linux)
run: make release_linux
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: 1.8
crystal: 1.9
- name: Install dependencies
run: shards install
- name: Run tests
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: 1.8
crystal: 1.9
- name: Install dependencies
run: shards install
- name: Run linter
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: 1.8
crystal: 1.9
- run: make build
- name: Install kcov
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
UUID := $(shell id -u)
GUID := $(shell id -g)
CRYSTAL_VERSION := 1.8
CRYSTAL_VERSION := 1.9

build:
shards build coveralls --progress --error-trace
Expand Down
8 changes: 4 additions & 4 deletions shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ version: 2.0
shards:
ameba:
git: https://github.com/crystal-ameba/ameba.git
version: 1.4.2
version: 1.4.3+git.commit.a33f98624a30a62cdf03affe32e7469ab2287f9f

crystal-kcov:
git: https://github.com/vici37/crystal-kcov.git
version: 0.2.3+git.commit.7e49fe22d7d47040c9de77eb77a6daa76ce0655d

db:
git: https://github.com/crystal-lang/crystal-db.git
version: 0.11.0
version: 0.12.0

spectator:
git: https://gitlab.com/arctic-fox/spectator.git
version: 0.11.6

sqlite3:
git: https://github.com/crystal-lang/crystal-sqlite3.git
version: 0.19.0
version: 0.20.0

webmock:
git: https://github.com/manastech/webmock.cr.git
version: 0.14.0+git.commit.42b347cdd64e13193e46167a03593944ae2b3d20
version: 0.14.0

2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ dependencies:
development_dependencies:
webmock:
github: manastech/webmock.cr
branch: master
spectator:
gitlab: arctic-fox/spectator
ameba:
github: crystal-ameba/ameba
branch: master
crystal-kcov:
github: vici37/crystal-kcov

Expand Down
1 change: 1 addition & 0 deletions src/coverage_reporter/parser.cr
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ module CoverageReporter
GcovParser,
GolangParser,
CoveragepyParser,
CoverallsParser,
}

class NotFound < BaseException
Expand Down

0 comments on commit 2f6dff8

Please sign in to comment.