Skip to content

remove test output file from version control #108

remove test output file from version control

remove test output file from version control #108

Workflow file for this run

name: Self Test
on:
push:
pull_request:
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