Skip to content

Commit

Permalink
Git check patch
Browse files Browse the repository at this point in the history
  • Loading branch information
rm875 committed May 16, 2024
1 parent ad095d8 commit 12826b9
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v1
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: 3.11
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip virtualenv wheel setuptools
Expand All @@ -26,11 +26,14 @@ jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v1
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: 3.11
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip virtualenv wheel setuptools
- name: Make sdist
run: python3 setup.py sdist --formats=gztar
- name: Install dependencies
Expand Down Expand Up @@ -62,11 +65,11 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v1
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: 3.11
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip virtualenv wheel setuptools m2r2
Expand Down

0 comments on commit 12826b9

Please sign in to comment.