Skip to content

Commit

Permalink
workflows: build protonfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Aug 31, 2024
1 parent 7073110 commit 41895a4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: make

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 make
- name: Initialize submodules
run: |
git submodule update --init --recursive
- name: Make module
run: |
make install

0 comments on commit 41895a4

Please sign in to comment.