mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
c80fdc938c
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 7.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6.0.2...v7.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
1006 B
YAML
42 lines
1006 B
YAML
---
|
|
name: hexpm-mirrors
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
test-failing-first-mirror:
|
|
name: Test option hexpm-mirrors with a dummy first mirror
|
|
runs-on: ${{matrix.os}}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: ['ubuntu-24.04', 'windows-2022', 'macos-15']
|
|
otp-version: ['27']
|
|
elixir-version: ['v1.18', '']
|
|
install-rebar: [true, false]
|
|
install-hex: [true, false]
|
|
steps:
|
|
- uses: actions/checkout@v7.0.0
|
|
- name: Use erlef/setup-beam
|
|
id: setup-beam
|
|
uses: ./
|
|
with:
|
|
otp-version: ${{matrix.otp-version}}
|
|
elixir-version: ${{matrix.elixir-version}}
|
|
install-rebar: ${{matrix.install-rebar}}
|
|
install-hex: ${{matrix.install-hex}}
|
|
hexpm-mirrors: |
|
|
https://mirror.invalid
|
|
https://cdn.jsdelivr.net/hex
|
|
https://builds.hex.pm
|