Skip to content

Commit

Permalink
add gitlab ci
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenDE committed Jul 11, 2024
1 parent f2fdba5 commit 07fb94d
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Tests

on:
push:
pull_request:
branches:
- main

jobs:
tests:
name: Run tests (${{ matrix.image }})

strategy:
fail-fast: false
matrix:
include:
- image: 1.11.4-erlang-21.3.8.24-debian-buster-20240513-slim
- image: 1.17.2-erlang-27.0.1-debian-bookworm-20240701-slim

runs-on: ubuntu-latest
container:
image: hexpm/elixir:${{ matrix.image }}

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Hex and Rebar setup
run: |
mix local.hex --force
mix local.rebar --force
- name: Restore deps and _build cache
uses: actions/cache@v4
with:
path: |
deps
_build
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}
- name: Install dependencies
run: mix deps.get --only test

- name: Run tests
run: mix test

0 comments on commit 07fb94d

Please sign in to comment.