Skip to content

Commit

Permalink
Run tests with unlocked deps on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
angelikatyborska committed Jul 16, 2024
1 parent 5cb5deb commit 73f7a85
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: push
jobs:
test:
runs-on: ubuntu-latest
name: unit
name: unit tests
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
Expand All @@ -17,6 +17,21 @@ jobs:
- run: mix docs
- name: Check if versions showcase mix script finishes
run: mix run scripts/generate_version_showcase.ex


test-unlocked-deps:
runs-on: ubuntu-latest
name: unit tests (unlocked deps)
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: '25.1'
elixir-version: '1.14.5'
- run: mix deps.unlock --all
- run: mix deps.get
- run: mix test

demo:
runs-on: ubuntu-latest
name: demo
Expand Down

0 comments on commit 73f7a85

Please sign in to comment.