Skip to content

Commit

Permalink
chore: loose crystal version
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasintel committed Apr 2, 2021
1 parent 4dd4ab0 commit 79ba0f5
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,15 @@ on:
jobs:
Specs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
crystal: [0.36.1, latest]

steps:
- uses: actions/checkout@v2
- uses: oprypin/install-crystal@v1
with:
crystal: 0.36.1
- run: shards install
crystal: ${{ matrix.crystal }}
- run: shards install --ignore-crystal-version
- run: crystal spec --tag integration
9 changes: 7 additions & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,15 @@ jobs:
Specs:
needs: [Linter]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
crystal: [0.36.1, latest]

steps:
- uses: actions/checkout@v2
- uses: oprypin/install-crystal@v1
with:
crystal: 0.36.1
- run: shards install
crystal: ${{ matrix.crystal }}
- run: shards install --ignore-crystal-version
- run: crystal spec --tag ~integration
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Build dependencies:
```bash
$ git clone https://github.com/kandayo/likee-scraper
$ cd likee-scraper
$ shards build --release
$ shards build --release --ignore-crystal-version
$ ./bin/likeer --help
```

Expand Down
8 changes: 4 additions & 4 deletions shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ shards:

likee:
git: https://github.com/kandayo/likee.cr.git
version: 0.2.2
version: 0.2.3

progress:
git: https://github.com/kandayo/progress.cr.git
version: 0.1.1
version: 0.1.2

retriable:
git: https://github.com/Sija/retriable.cr.git
version: 0.2.2
git: https://github.com/sija/retriable.cr.git
version: 0.2.3

webmock:
git: https://github.com/manastech/webmock.cr.git
Expand Down
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: likee_scraper
version: 0.2.2
version: 0.2.3

authors:
- kandayo <[email protected]>
Expand All @@ -8,7 +8,7 @@ targets:
likeer:
main: src/main.cr

crystal: 0.36.1
crystal: ">= 0.36.0"

dependencies:
likee:
Expand Down
2 changes: 1 addition & 1 deletion src/likee_scraper/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module LikeeScraper
VERSION = "0.2.2"
VERSION = "0.2.3"
end

0 comments on commit 79ba0f5

Please sign in to comment.