Skip to content

conversion from ElfFile to ObjectFile #63

conversion from ElfFile to ObjectFile

conversion from ElfFile to ObjectFile #63

Workflow file for this run

name: Python package
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
first-stage:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
- name: Install dependencies
run: pip install black flake8 pytest
- name: Check code style
run: black --check .
- name: Static code analysis
run: flake8 ppci test
- name: Test with pytest
run: pytest
second-stage:
needs: first-stage
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: ["ubuntu-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install pytest
- name: Test with pytest
run: pytest