Skip to content

Commit

Permalink
Add diagnose tests to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffkreeftmeijer committed Jun 19, 2024
1 parent f271304 commit eac14fe
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,27 @@ jobs:
- name: Analyze code with Dialyzer
run: mix dialyzer --format github

diagnose:
runs-on: ubuntu-latest
steps:
- name: Set up Erlang and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: master
elixir-version: main
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.x
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: true
- name: Get dependencies
run: mix deps.get
- name: Run tests
run: test/integration/diagnose/bin/test

test:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit eac14fe

Please sign in to comment.