Skip to content

Fixes for UKI without sd-boot, UKI with legacy installkernel, and rEFInd #104

Fixes for UKI without sd-boot, UKI with legacy installkernel, and rEFInd

Fixes for UKI without sd-boot, UKI with legacy installkernel, and rEFInd #104

Workflow file for this run

---
name: CI
on:
- push
- pull_request
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12-dev', 'pypy-3.9']
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install tox
- name: Test using tox
run: tox -e py
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install tox
run: pip install tox
- name: Test using tox
run: tox -e qa