Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/test.yaml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
name: Run tests

on:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements/base.txt
pip install tox tox-gh-actions
- name: Test with tox
run: tox
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
* @vdloo @AlexanderGrooff @alejandrogarza @pieterbeens @tdgroot @markdentoom @martijneichelsheim
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't we do something like @ByteInternet/byte-tech?