Skip to content

Commit

Permalink
Test updating deps in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoefmoraes committed Jan 29, 2024
1 parent 08768b8 commit 3f0b94e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,19 @@ jobs:
warnings_as_errors: true
- elixir: '1.15.2'
otp: '26.0'
check_formatted: true
run_plugin_tests: true
run_integration_tests: true
warnings_as_errors: true
- elixir: '1.16.0'
otp: '26.2.1'
check_formatted: false
check_formatted: true
run_plugin_tests: true
run_integration_tests: true
warnings_as_errors: true
- elixir: '1.16.0'
otp: '26.2.1'
update_deps: true
run_plugin_tests: true
env:
MIX_ENV: test
steps:
Expand All @@ -49,6 +52,9 @@ jobs:
- name: Use old lock file
if: matrix.old_deps
run: mv mix.lock.old mix.lock
- name: Update deps
if: matrix.update_deps
run: mix deps.update --all
- name: Deps and _build cache
uses: actions/cache@v3
id: deps-cache
Expand Down

0 comments on commit 3f0b94e

Please sign in to comment.