-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from R1kaB3rN/gh-action
Add Github Action for protonfixes
- Loading branch information
Showing
107 changed files
with
695 additions
and
690 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: ULWGL-protonfixes workflow | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
# The Steam Runtime platform (sniper) uses Python 3.9 | ||
python-version: '3.9' | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get install shellcheck | ||
python3 -m pip install --upgrade pip | ||
pip install pylint | ||
- name: Lint with Shellcheck | ||
run: | | ||
shellcheck tools/lint.sh tools/check-links.sh | ||
- name: Check symbolic links | ||
run: | | ||
bash tools/check-links.sh | ||
- name: Lint with Pylint | ||
run: | | ||
bash tools/lint.sh |
Oops, something went wrong.