Skip to content

Commit

Permalink
re-add 3.7 testin on 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Oct 14, 2024
1 parent 8ae4554 commit b5c01cb
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/functional-3.7.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Functional Testing

on:
push:
branches: [main, 4.2, 3.4]
pull_request:
branches: [main]

permissions:
contents: read

jobs:
build:
# runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.7"]
os: ["ubuntu-22.04"]

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}

- name: run python version
run: |
python --version
- name: Install dependencies
run: |
python -m pip install --no-cache-dir --upgrade pip
pip install --no-cache-dir -r requirements.txt
pip install psutil
- name: Configuration
run: |
./qa/bin/functional parsing
- name: Functional
run: |
./qa/bin/functional encoding
- name: Decoding
run: |
./qa/bin/functional decoding

0 comments on commit b5c01cb

Please sign in to comment.