From 47c9d76ffdb2e2bb7da1f65652c030cbc0baa0a4 Mon Sep 17 00:00:00 2001 From: Gonzalo <456459+grzuy@users.noreply.github.com> Date: Wed, 31 Jan 2024 14:08:31 -0300 Subject: [PATCH] ci: configure Github Actions --- .github/workflows/ci.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..41a3287 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,33 @@ +name: CI +on: + pull_request: + push: + +jobs: + main: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - elixir_version: 1.16.1 + otp_version: '26.2.1' + lint: true + - elixir_version: 1.15.7 + otp_version: '25.3.2.8' + steps: + - uses: actions/checkout@v4 + - uses: erlef/setup-beam@v1 + with: + otp-version: ${{matrix.otp_version}} + elixir-version: ${{matrix.elixir_version}} + - run: mix deps.get --check-locked + - run: mix format --check-formatted + if: ${{ matrix.lint }} + - run: mix deps.unlock --check-unused + if: ${{ matrix.lint }} + - run: mix deps.compile + - run: mix compile --warnings-as-errors + if: ${{ matrix.lint }} + # TODO + # - run: mix test