Skip to content

Commit

Permalink
test gitub action
Browse files Browse the repository at this point in the history
  • Loading branch information
juggler31 committed Oct 1, 2024
1 parent 779fd73 commit 7a6cbe6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Check pip install package with multiple version of python
on: [push, pull_request]

jobs:
check-requirements-install:
strategy:
matrix:
python-version: [ "3.9", "3.12" ]

#ubuntu-20.04 based on debian 11
#ubuntu-24.04 based on debian 12
os: [ ubuntu-20.04, ubuntu-24.04 ]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: pip install -r requirements.txt

0 comments on commit 7a6cbe6

Please sign in to comment.