Skip to content

Commit

Permalink
Python action
Browse files Browse the repository at this point in the history
  • Loading branch information
OzzyCzech committed Jun 16, 2023
1 parent ee8e21e commit a6594ed
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/prepare
- uses: ./.github/actions/build
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: ./.github/actions/prepare
- uses: ./.github/actions/build
- name: run httpbin in background
- name: install httpbin
run: pip install httpbin
- name: run httpbin server
run: |
pip install httpbin
gunicorn -b 0.0.0.0:80 httpbin:app -k gevent &
- name: make integration
run: |
Expand Down

0 comments on commit a6594ed

Please sign in to comment.