Skip to content

Commit

Permalink
Merge pull request #43 from R1kaB3rN/gh-action
Browse files Browse the repository at this point in the history
Add Github Action for protonfixes
  • Loading branch information
R1kaB3rN authored Mar 8, 2024
2 parents 7c1aac0 + 7859bd6 commit 5fe5d48
Show file tree
Hide file tree
Showing 107 changed files with 695 additions and 690 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ulwgl-protonfixes.yml
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
Loading

0 comments on commit 5fe5d48

Please sign in to comment.