Skip to content

Commit

Permalink
CI: update GitHub Actions and sundry tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi committed Nov 16, 2022
1 parent d893887 commit a03c9e7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
env:
FORCE_COLOR: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.7

- name: Install nox
run: python -m pip install nox
- name: Install mypy
run: python -m pip --disable-pip-version-check install mypy==0.981

- name: Run check for type
run: nox -s mypy
- name: Run mypy
run: mypy -p mesonpy
2 changes: 1 addition & 1 deletion .github/workflows/ci-sage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out ${{ env.SPKG }}
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: build/pkgs/${{ env.SPKG }}/src
- name: Install prerequisites
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
cancel-in-progress: true

jobs:
pytest:
test:
runs-on: ${{ matrix.os }}-latest
env:
FORCE_COLOR: true
Expand All @@ -35,10 +35,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up target Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Cygwin
uses: cygwin/cygwin-install-action@v2
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install pyston
run: |
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Homebrew Python
run: |
Expand Down

0 comments on commit a03c9e7

Please sign in to comment.