Skip to content

Level 2 autopublish #136

Level 2 autopublish

Level 2 autopublish #136

Workflow file for this run

name: Self Test
on:
push:
paths:
- 'test/**.py'
- 'test/**.json'
- '.github/workflows/self_test.yml'
pull_request:
paths:
- 'test/**.py'
- 'test/**.json'
- '.github/workflows/self_test.yml'
jobs:
build:
runs-on: ubuntu-latest
name: Run the python tests
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v3
with:
python-version: 3.11.2
architecture: x64
- run: pip install aiohttp
- run: cd test && python self_test.py
shell: bash