Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Oct 9, 2023
1 parent 0cfba25 commit 12c9b97
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
otp: ["20.3", "21.3", "22.2",
"23.3", "24.3", "25.3"]
otp: ["20.3", "21.3", "22.2", "23.3", "24.3"]
rebar3: ['3.14.4']
os: [ubuntu-20.04]
steps:
Expand All @@ -23,9 +22,11 @@ jobs:
with:
otp-version: ${{matrix.otp}}
rebar3-version: ${{matrix.rebar3}}
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: python3 python3-pip
version: 1.1
- run: |
sudo apt-get -y install python3
sudo apt-get -y install python3-pip
pip3 install httpbin
pip3 install gunicorn
gunicorn -b 127.0.0.1:8000 -b unix:httpbin.sock httpbin:app&
Expand Down

0 comments on commit 12c9b97

Please sign in to comment.