Skip to content

feat: remove formatter #1061

feat: remove formatter

feat: remove formatter #1061

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: 42 5 * * 3
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.19, 3.14.0]
rf-version: [6.1.1, 7.4.1]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }} with Robot Framework ${{ matrix.rf-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv pip install -r requirements-dev.txt --python ${{ matrix.python-version }} --system
uv pip install . --python ${{ matrix.python-version }} --system
- name: Install RF
run: |
uv pip install robotframework==${{ matrix.rf-version }} --python ${{ matrix.python-version }} --system
- name: Lint files
if : matrix.rf-version != '6.1.1'
run: |
inv lint -e
- name: Run unit tests
run: |
inv utest
- name: Run acceptance tests
run: |
inv atest -z True
- uses: actions/upload-artifact@v6
if: ${{ always() }}
with:
name: Test_results_${{ matrix.python-version }}_${{ matrix.rf-version }}
path: zip_results/output