mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-04 03:03:57 +00:00
21 lines
409 B
YAML
21 lines
409 B
YAML
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
run-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 2
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -U requests beautifulsoup4
|
|
- name: Run tests
|
|
run: |
|
|
code/tests.py
|