mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Better describe the steps in the check workflow
This commit is contained in:
parent
88db931584
commit
aa64f3b854
1 changed files with 5 additions and 3 deletions
8
.github/workflows/check.yml
vendored
8
.github/workflows/check.yml
vendored
|
@ -10,9 +10,11 @@ jobs:
|
||||||
check:
|
check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout the repository
|
||||||
- uses: actions/setup-python@v2
|
uses: actions/checkout@v2
|
||||||
|
- name: Install Python 3.8
|
||||||
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: '3.8'
|
python-version: '3.8'
|
||||||
- name: Check everything
|
- name: Check all .py files
|
||||||
run: python -m compileall royalpack
|
run: python -m compileall royalpack
|
||||||
|
|
Loading…
Reference in a new issue