Skip to content

Commit

Permalink
chore: improve CI
Browse files Browse the repository at this point in the history
  • Loading branch information
shiryel committed Aug 26, 2024
1 parent 8119386 commit eab35b0
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Run Tests

on: [push, pull_request]
on:
- push
- pull_request

jobs:
tests:
Expand Down Expand Up @@ -49,3 +51,23 @@ jobs:

- name: Check Dialyzer
run: mix dialyzer

- name: Check 3D Picking example
run: |
cd examples/3d_picking
mix deps.get
mix compile --warnings-as-errors
mix chedo --scrict
mix format --check-formatted
mix dialyzer
cd ../..
- name: Check Scale Rectangle example
run: |
cd examples/scale_rectangle
mix deps.get
mix compile --warnings-as-errors
mix chedo --scrict
mix format --check-formatted
mix dialyzer
cd ../..

0 comments on commit eab35b0

Please sign in to comment.