1
Fork 0
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:
Steffo 2020-07-31 00:55:54 +02:00
parent 88db931584
commit aa64f3b854

View file

@ -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