Update versions as to not have CI fail (while fixing "non-failing" CI) (#164)

aee3f52 · Paulo F. Oliveira · 2022-12-12 00:33

3 files +11 -11
Message
{commit_body(@commit)}

Files changed

modified .github/workflows/ubuntu.yml
+2 −2
@@ -179,10 +179,10 @@ jobs:
179 179 cd test-projects/erlang_rebar3
180 180 rebar3 ct
181 181 if: ${{matrix.combo.rebar3-version}}
182 - name: Type check Gleam project (without installing Erlang/OTP)
182 + - name: Format Gleam project (without installing Erlang/OTP)
183 183 run: |
184 184 cd test-projects/gleam_gleam
185 gleam check
185 + gleam format
186 186 if: ${{ matrix.combo.gleam-version && !matrix.combo.otp-version }}
187 187 - name: Run Gleam project tests (without `rebar3`)
188 188 run: |
modified README.md
+6 −6
@@ -1,12 +1,12 @@
1 1 <!-- markdownlint-disable MD013 -->
2 2 # setup-beam [![GitHub Actions][action-img]][action] [![GitHub Actions][ubuntu-img]][ubuntu] [![GitHub Actions][windows-img]][windows]
3 3
4 [action]: https://github.com/erlef/setup-beam
5 [action-img]: https://github.com/erlef/setup-beam/workflows/action/badge.svg
6 [ubuntu]: https://github.com/erlef/setup-beam
7 [ubuntu-img]: https://github.com/erlef/setup-beam/workflows/ubuntu/badge.svg
8 [windows]: https://github.com/erlef/setup-beam
9 [windows-img]: https://github.com/erlef/setup-beam/workflows/windows/badge.svg
4 +[action]: https://github.com/erlef/setup-beam/actions/workflows/action.yml
5 +[action-img]: https://github.com/erlef/setup-beam/actions/workflows/action.yml/badge.svg
6 +[ubuntu]: https://github.com/erlef/setup-beam/actions/workflows/ubuntu.yml
7 +[ubuntu-img]: https://github.com/erlef/setup-beam/actions/workflows/ubuntu.yml/badge.svg
8 +[windows]: https://github.com/erlef/setup-beam/actions/workflows/windows.yml
9 +[windows-img]: https://github.com/erlef/setup-beam/actions/workflows/windows.yml/badge.svg
10 10
11 11 This action sets up an Erlang/OTP environment for use in a GitHub Actions
12 12 workflow by:
modified __tests__/setup-beam.test.js
+3 −3
@@ -1,6 +1,6 @@
1 simulateInput('otp-version', '23.2')
2 simulateInput('elixir-version', '1.11')
3 simulateInput('rebar3-version', '3.14')
1 +simulateInput('otp-version', '25.1.2')
2 +simulateInput('elixir-version', '1.14.2')
3 +simulateInput('rebar3-version', '3.20')
4 4 simulateInput('install-rebar', 'true')
5 5 simulateInput('install-hex', 'true')
6 6

Parents: 96fce95