Skip to content

Commit

Permalink
Capitalise job names
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfioravanti committed Sep 11, 2023
1 parent a75e443 commit 85e6f25
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
name: Build, Lint, Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
- name: Checkout Repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: Install test/lint dependencies
- name: Install Test/Lint Dependencies
run: pip install pytest pylint

- name: Run linter
- name: Run Linter
run: pylint plover_q_and_a

- name: Run tests
- name: Run Tests
run: pytest
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,28 @@ jobs:
permissions:
id-token: write
steps:
- name: Clone repository
- name: Clone Repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9

- name: Install test/lint dependencies
- name: Install Test/Lint Dependencies
run: pip install pytest pylint

- name: Run linter
- name: Run Linter
run: pylint plover_q_and_a

- name: Run tests
- name: Run Tests
run: pytest

- name: Install build
- name: Install Build
run: python -m pip install --upgrade build

- name: Build
run: python -m build

- name: Publish package distributions to PyPI
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 85e6f25

Please sign in to comment.