Rename value to state #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |