diff --git a/.github/workflows/autobahn.yaml b/.github/workflows/autobahn.yaml new file mode 100644 index 0000000..e61ce07 --- /dev/null +++ b/.github/workflows/autobahn.yaml @@ -0,0 +1,18 @@ +name: autobahn testsuit report +on: [push, pull_request] + +jobs: + ubuntu: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: 'pypy2.7' + - run: pip install virtualenv + - run: python -m virtualenv ./venv/ + - run: ./venv/bin/pip install autobahntestsuite==0.8.2 + - run: ./venv/bin/wstest --help + #- run: wget https://downloads.python.org/pypy/pypy2.7-v7.3.17-linux64.tar.bz2 + #- run: tar fvx pypy2.7-v7.3.17-linux64.tar.bz2 + #- run: ./pypy2.7-v7.3.17-linux64/bin/pypy ./venv/bin/wstest --help diff --git a/.gitignore b/.gitignore index 3653f44..83ead23 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,8 @@ example_client example_server fuzzingclient.json -reports/ \ No newline at end of file +reports/ + +# Editors crap +.*.swp +*~