add WCMP2 unregister functionality #132
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
name: flake8 | |
on: | |
[ push, pull_request ] | |
jobs: | |
flake8_py3: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-python@v5 | |
name: setup Python | |
with: | |
python-version: '3.10' | |
- name: Checkout wis2-gdc | |
uses: actions/checkout@master | |
- name: Install flake8 | |
run: pip3 install flake8 | |
- name: Run flake8 | |
uses: suo/flake8-github-action@releases/v1 | |
with: | |
checkName: 'flake8_py3' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |