Skip to content

Commit

Permalink
Update the shards to latest versions (#54)
Browse files Browse the repository at this point in the history
* moving the CI shards install below cache to keep consistent with others and avoid weird cache issues

* Update to the latest shards required
  • Loading branch information
jwoertink authored Apr 1, 2021
1 parent 03d229e commit 625833b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
container: crystallang/crystal:${{ matrix.crystal_version }}-alpine
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: shards install
- name: Cache Crystal
uses: actions/cache@v1
with:
path: ~/.cache/crystal
key: ${{ runner.os }}-crystal
- name: Install dependencies
run: shards install
- name: Create .env file
run: touch .env
- if: env.RUN_INTEGRATION_SPECS == true
Expand Down
6 changes: 3 additions & 3 deletions shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ license: MIT
dependencies:
habitat:
github: luckyframework/habitat
branch: master
version: ~> 0.4.7

development_dependencies:
lucky_env:
github: luckyframework/lucky_env
branch: master
version: ~> 0.1.1

ameba:
github: crystal-ameba/ameba
version: ~> 0.13.4
version: ~> 0.14.2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class Carbon::Expectations::HaveDeliveredEmailsExpectation
def match(_carbon : Carbon.class) : Bool
Carbon::DevAdapter.delivered_emails.any?
!Carbon::DevAdapter.delivered_emails.empty?
end

def failure_message(_carbon : Carbon.class)
Expand Down

0 comments on commit 625833b

Please sign in to comment.