Skip to content

renamed files and folders #11

renamed files and folders

renamed files and folders #11

Workflow file for this run

name: Robot CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install robotframework==7.2.2
- name: Run smoke tests
run: |
mkdir -p results
robot -d results ci/robot/smoke.robot
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: smoke-test-results
path: results/
if-no-files-found: ignore