diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0ff2e4d..552859a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -119,6 +119,23 @@ jobs: path: | test/test_*/ + check-asdf-elixir: + runs-on: ubuntu-latest + steps: + + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install asdf along with Erlang/OTP and Elixir + uses: asdf-vm/actions/install@v3 + with: + tool_versions: + erlang latest + elixir latest + + - name: Run tests + run: make check c=core-elixir -j4 -k + check-hex: strategy: fail-fast: false |