Fix Pydantic warnings (#3557) #1730
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: Keiko Run the robot framework integration tests | |
on: | |
push: | |
branches: | |
- "main" | |
- "release-*" | |
tags: | |
- "*" | |
paths: | |
- keiko/** | |
pull_request: | |
paths: | |
- keiko/** | |
jobs: | |
itest: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install requirements-dev.txt | |
run: pip install -r requirements-dev.txt | |
working-directory: ./keiko | |
- name: Run integration tests | |
run: make itest | |
working-directory: ./keiko |