diff options
author | Loïc Hoguin <[email protected]> | 2025-03-19 12:27:02 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-03-19 17:07:01 +0100 |
commit | f7bc2bd13f32af13af1a8e37745b935068c45671 (patch) | |
tree | c419277fe14545eeb2bde85621d6e1889844d4ee /.github/workflows | |
parent | a5e7fd2ed1f7d756edee8e19af8bb639e1287ee6 (diff) | |
download | erlang.mk-elixir-related-fixes.tar.gz erlang.mk-elixir-related-fixes.tar.bz2 erlang.mk-elixir-related-fixes.zip |
Properly handle asdf-installed Elixirelixir-related-fixes
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 |