Release 0.1.4 (#11) #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI_simple | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
run-robot-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["pypy3.10", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
uv lock | |
uv sync --extra test | |
- name: Run Robot Framework tests | |
run: | | |
uv run robot -L TRACE -P atests/regmapmockup/ -P atests/bson/ atests/ | |
uv run ruff check src | |
- name: Upload Robot Framework log | |
uses: actions/upload-artifact@v3 | |
with: | |
name: robot-log | |
path: log.html |