mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-03 02:43:59 +00:00
Add workflow to run tests on pull request or push to main
This commit is contained in:
parent
8494a7fcaa
commit
8a74896333
1 changed files with 21 additions and 0 deletions
21
.github/workflows/run-tests.yml
vendored
Normal file
21
.github/workflows/run-tests.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
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
|
Loading…
Reference in a new issue