Skip to content

Commit

Permalink
workflow renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelHenningsson committed Jan 26, 2022
1 parent a6229a0 commit 7ee655f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/install-and-test-macos-py39.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: macos-latest, setup.py install and pytest
name: macos-latest, install and pytest

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install-and-test-ubuntu-py39.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: ubuntu-latest, setup.py install and pytest
name: ubuntu-latest, install and pytest

on:
push:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/verify-pypi-release-macos-py39.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: macos-latest, setup.py install and pytest
name: On pypi release, macos-latest, pip install and pytest

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
tags:
- v*.*

jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: [ '2.7', '3.9', '3.x' ]
python-version: [ '2.7', '3.9', '3.x' ]
name: Python ${{ matrix.python-version }} sample
steps:
- uses: actions/checkout@v2
Expand All @@ -34,3 +33,4 @@ jobs:
- name: Test with pytest
run: |
pytest
9 changes: 4 additions & 5 deletions .github/workflows/verify-pypi-release-ubuntu-py39.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: ubuntu-latest, setup.py install and pytest
name: On pypi release, ubuntu-latest, pip install and pytest

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
tags:
- v*.*

jobs:
build:
Expand All @@ -33,4 +32,4 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Test with pytest
run: |
pytest
pytest

0 comments on commit 7ee655f

Please sign in to comment.