Skip to content

Bump pytest from 7.4.2 to 7.4.4 #72

Bump pytest from 7.4.2 to 7.4.4

Bump pytest from 7.4.2 to 7.4.4 #72

Workflow file for this run

# check spelling, codestyle
name: Style checks
on:
pull_request:
push:
tags:
- "*"
branches:
- main
jobs:
style:
name: Style Check
runs-on: ubuntu-latest
steps:
- name: setup-git-credentials
run: |
git config --global url.https://${{ secrets.PHX_NIGHTLY_SECRET }}@github.com/ansys/pyansys-tools-variableinterop.insteadOf https://github.com/ansys/pyansys-tools-variableinterop
- uses: actions/checkout@v2
with:
token: ${{ secrets.PHX_NIGHTLY_SECRET }}
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install style requirements
run: |
pip install .[style] --disable-pip-version-check
- name: Codespell
run: |
make codespell
- name: flake8
run: |
make flake8