Skip to content

Commit

Permalink
Use an older rebar3 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Jun 28, 2021
1 parent e2e29b6 commit 467be5e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ on:
jobs:

build:
name: Build on OTP ${{ matrix.otp_version }} / ${{ matrix.os }}
name: Build on OTP ${{ matrix.otp_version }} w/ rebar ${{ matrix.rebar3-version }}
runs-on: ubuntu-latest

strategy:
matrix:
otp_version: [19, 20, 21, 22, 23, 24]
rebar3-version: ['3.15.2']
os: [ubuntu-latest]

container:
Expand All @@ -24,7 +25,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Download Recent Rebar
run: wget https://s3.amazonaws.com/rebar3/rebar3 && chmod 755 ./rebar3
run: wget https://github.com/erlang/rebar3/releases/download/${{ matrix.rebar3-version }}/rebar3 && chmod 755 ./rebar3
- name: Update Path
run: echo "./" >> $GITHUB_PATH
- name: Check ./rebar3 Version
Expand All @@ -38,4 +39,4 @@ jobs:
- name: Run Tests
run: ./rebar3 eunit -v
- name: Test Coverage
run: r./ebar3 as test do proper -c, cover -v --min_coverage=0
run: ./rebar3 as test do proper -c, cover -v --min_coverage=0

0 comments on commit 467be5e

Please sign in to comment.