Skip to content

Commit

Permalink
feat: restore test-elixir (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalis authored Nov 13, 2024
1 parent 6c469ee commit d2b1340
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/test-elixir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: test-elixir

on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
workflow_call:

jobs:
tests:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
include:
- otp: '26.0'
elixir: '1.15'
- otp: '27.1'
elixir: '1.17'
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}

- run: mix deps.get
working-directory: elixir

- run: mix test
working-directory: elixir

- name: run acceptance tests
run: make acceptance
working-directory: elixir

0 comments on commit d2b1340

Please sign in to comment.