From db11fabeee40658d9223b08334b94c15d81fbbc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Azer=20Ko=C3=A7ulu?= Date: Wed, 19 Aug 2026 12:57:09 +0200 Subject: [PATCH] Add CI workflow running tests on every PR Co-Authored-By: Claude Fable 5 --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..a4bad07 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: ci + +# Every PR runs the test suite before merge. +on: + pull_request: + push: + branches: [main] + +jobs: + test: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - uses: actions/checkout@v4 + + - uses: erlef/setup-beam@v1 + with: + elixir-version: "1.17" + otp-version: "27" + + - run: mix deps.get + + - run: mix test