Skip to content

faking a commit to retrigger CI workflow #1

faking a commit to retrigger CI workflow

faking a commit to retrigger CI workflow #1

Workflow file for this run

name: Tests
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Python 3.12
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: 3.12
cache: "pip"
- name: Install dependencies
run: |
make
- name: Run Tests
uses: codecomet-io/setup-and-run@v1.3
env:
# CODECOMET_API_KEY is a secret that you need to add to your repository
CODECOMET_API_KEY: ${{ secrets.CODECOMET_API_KEY }}
with:
test_command: pytest tests
test_suite_name: Python Requests Tests