diff options
author | Loïc Hoguin <[email protected]> | 2025-10-03 12:44:16 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-10-03 14:06:26 +0200 |
commit | 76622258ad273b45bc74851e842159deb7f66aca (patch) | |
tree | 8e62d7e16f88be8147b9a7fd1f253ee2e21b329a /.github/workflows | |
parent | c98e20eecc43f1b5ebc7bd8ae9e01d0cefb86b04 (diff) | |
download | ci.erlang.mk-master.tar.gz ci.erlang.mk-master.tar.bz2 ci.erlang.mk-master.zip |
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bc29b09..ea08cbf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -61,6 +61,16 @@ jobs: otp-version: '${{ needs.prepare-unix.outputs.latest }}' version-type: strict + - name: Checkout ci.erlang.mk + uses: actions/checkout@v4 + with: + repository: ninenines/ci.erlang.mk + ref: master + path: ci.erlang.mk + + - name: Install Erlang problem matchers + run: echo "::add-matcher::ci.erlang.mk/.github/matchers/erlang-matchers.json" + - name: Run Dialyzer run: make dialyze @@ -88,6 +98,16 @@ jobs: otp-version: '${{ matrix.erlang }}' version-type: strict + - name: Checkout ci.erlang.mk + uses: actions/checkout@v4 + with: + repository: ninenines/ci.erlang.mk + ref: master + path: ci.erlang.mk + + - name: Install Erlang problem matchers + run: echo "::add-matcher::ci.erlang.mk/.github/matchers/erlang-matchers.json" + - name: Run tests (macOS) if: runner.os == 'macOS' run: > @@ -166,6 +186,16 @@ jobs: otp-version: '${{ matrix.erlang }}' version-type: loose + - name: Checkout ci.erlang.mk + uses: actions/checkout@v4 + with: + repository: ninenines/ci.erlang.mk + ref: master + path: ci.erlang.mk + + - name: Install Erlang problem matchers + run: echo "::add-matcher::ci.erlang.mk/.github/matchers/erlang-matchers.json" + - name: Setup MSYS2 uses: msys2/setup-msys2@v2 with: |