Skip to content

Update README.md

Update README.md #8

Workflow file for this run

name: App Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest
- name: Run tests
env:
CLOUDFLARE_API_TOKEN: 123 # Use the secret here
run: |
pytest