David2261 is testing out Github CI/CD #22
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: RFT_CS CI/CD | |
run-name: ${{ github.actor }} is testing out Github CI/CD | |
on: [pull_request] | |
jobs: | |
flake8: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: ["3.9", "3.10"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
- run: | | |
python3 -m pip install --upgrade pip | |
python -m pip install flake8 | |
- name: flake8 | |
uses: liskin/gh-problem-matcher-wrap@d8afa2cfb66dd3f982b1950429e652bc14d0d7d2 | |
with: | |
cache: "pip" | |
linters: flake8 | |
run: flake8 RFTCS |