From 2811a30fda03e2eae323f895ca8731a36a96f90d Mon Sep 17 00:00:00 2001 From: Paul Swartz Date: Tue, 27 Dec 2022 11:56:35 -0500 Subject: [PATCH] ci: include GitHub Actions runner --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..e21b41d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: Elixir + +on: push + +jobs: + test: + runs-on: ubuntu-20.04 + name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} + strategy: + matrix: + otp: ['21.0'] + elixir: ['1.8.1'] + steps: + - uses: actions/checkout@v3 + - uses: erlef/setup-beam@v1 + with: + version-type: strict + otp-version: ${{matrix.otp}} + elixir-version: ${{matrix.elixir}} + - run: mix deps.get + - run: mix test