Skip to content

Commit

Permalink
CI: check python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenrua committed Nov 27, 2023
1 parent 2e8d5ab commit 3235739
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ name: fluster

on:
push:
branches: [ master ]
branches: [ master, ci_arch ]
pull_request:
branches: [ master ]

jobs:
linux:
min deps linux:
runs-on: ubuntu-20.04

steps:
Expand All @@ -27,6 +27,24 @@ jobs:
run: |
make check
linux:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
make install_deps
sudo apt update && sudo apt install gstreamer1.0-tools gstreamer1.0-libav gstreamer1.0-plugins-bad ffmpeg vpx-tools
- name: Check
run: |
make check
windows:
runs-on: windows-latest

Expand Down

0 comments on commit 3235739

Please sign in to comment.