Skip to content

Commit

Permalink
Fixing how env is setup so it works on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoertink committed Jul 1, 2023
1 parent d8f1e37 commit 01af15e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
with:
crystal: ${{matrix.crystal_version}}
- run: shards install --ignore-crystal-version --skip-executables --skip-postinstall
- run: LUCKYFLOW_DRIVER=webless crystal spec --tag ~headless_chrome
- run: crystal spec --tag ~headless_chrome
env:
LUCKYFLOW_DRIVER: webless
selenium_specs:
strategy:
fail-fast: false
Expand All @@ -62,4 +64,6 @@ jobs:
with:
crystal: ${{matrix.crystal_version}}
- run: shards install --ignore-crystal-version --skip-executables --skip-postinstall
- run: LUCKYFLOW_DRIVER=headless_chrome crystal spec --tag ~webless
- run: crystal spec --tag ~webless
env:
LUCKYFLOW_DRIVER: headless_chrome

0 comments on commit 01af15e

Please sign in to comment.