Skip to content

fix!: correct package metadata and drop Python 3.9 #1052

fix!: correct package metadata and drop Python 3.9

fix!: correct package metadata and drop Python 3.9 #1052

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
schedule:
- cron: '15 10 * * *'
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.14"]
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install uv
uv pip install -r requirements-dev.txt --python ${{ matrix.python-version }} --system
uv pip install robotframework-browser --python ${{ matrix.python-version }} --system
- name: Lint files
run: inv lint
- name: Run unit tests
run: inv utest
- name: Run acceptance tests
run: |
rfbrowser init chromium
inv atest
- uses: actions/upload-artifact@v7
if: ${{ always() }}
with:
name: Test_results_${{ matrix.python-version }}
path: atest/output