Maxx 75457 support pyside6 #80
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: Checks | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v2 | |
# This step references the directory that contains the action. | |
- name: RunChecks | |
# this is a mega hack, to be fixed | |
run: | | |
sudo apt-get install dos2unix | |
python -m pip install pylint | |
chmod +x ./scripts/checks.sh | |
./scripts/checks.sh |