Updated packages #3760
Workflow file for this run
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: Octopoes Run the robot framework integration tests | |
on: | |
push: | |
branches: | |
- "main" | |
- "release-*" | |
tags: | |
- "*" | |
paths: | |
- octopoes/** | |
pull_request: | |
paths: | |
- octopoes/** | |
jobs: | |
rtest: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "pip" # caching pip dependencies | |
- name: Install requirements-dev.txt | |
run: pip install -r requirements-dev.txt | |
working-directory: ./octopoes | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
id: buildx | |
- name: Run robot tests | |
run: make rtest | |
env: | |
DOCKER_BUILDKIT: 1 | |
working-directory: ./octopoes |