2024-11-17 18:34:42 +02:00
|
|
|
name: Checks
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Setup ssl
|
|
|
|
run: wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb && sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.23_amd64.deb
|
|
|
|
|
|
|
|
- uses: erlef/setup-beam@v1
|
|
|
|
env:
|
|
|
|
ImageOS: ubuntu24
|
|
|
|
with:
|
|
|
|
otp-version: "25"
|
|
|
|
elixir-version: "1.17.3"
|
|
|
|
install-rebar: false
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: mix deps.get
|
|
|
|
|
|
|
|
- name: Check formatting
|
|
|
|
run: mix format --check-formatted
|
|
|
|
|
2024-11-17 21:58:21 +02:00
|
|
|
# - name: Run Credo
|
|
|
|
# run: mix credo --strict
|
2024-11-17 18:34:42 +02:00
|
|
|
|
|
|
|
- name: Check for compiler warnings
|
|
|
|
run: mix compile --warnings-as-errors
|
|
|
|
|
2024-11-28 09:49:51 +02:00
|
|
|
# - name: Run tests
|
|
|
|
# run: mix test
|
2024-11-17 18:34:42 +02:00
|
|
|
|
|
|
|
- name: Check for unused dependencies
|
|
|
|
run: mix deps.unlock --check-unused
|