From 9bd96ae87c5a85202abb80018c16c576f1de2036 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 | 22 ++++++++++++++++++++++ 1 file changed, 22 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..a6bfe53 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +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 + - run: mix test --include read_only_fs