1
0
mirror of https://github.com/httpie/cli.git synced 2025-12-26 00:31:53 +02:00

Split the monolithic workflow into specific ones (#1149)

* Split the monolithic workflow into specific ones

* Rename workflows, improve commands

* Update pip from the venv

* Fix Windows setup

* Lowercase macos-latest

* Fix Windows run, again
This commit is contained in:
Mickaël Schoentgen
2021-09-08 16:41:55 +02:00
committed by GitHub
parent 4d7d6b66cf
commit 4c8633c6e5
7 changed files with 89 additions and 35 deletions

21
.github/workflows/code-style.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Code style
on:
pull_request:
paths:
- .github/workflows/code-style.yml
- extras/*.py
- httpie/**/*.py
- setup.py
- tests/**/*.py
jobs:
code-style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- run: make venv
- run: make codestyle