-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 938 Bytes
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Run Tests
on:
pull_request:
workflow_dispatch:
push:
branches:
- "main"
paths-ignore:
- "pages/**"
schedule:
- cron: "43 */6 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[no-test]') }}
steps:
- name: Checkout repo content
uses: actions/[email protected] # checkout the repository content
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10' # install the python version needed
- name: Install required packages
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
- name: Run tests
run: |
cd tests
python3 main.py ${{ secrets.BOT_EMAIL }} ${{ secrets.BOT_PASSWORD }}