diff options
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r-- | .github/workflows/test.yml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index a52c7ce..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Test - -on: - push: - pull_request: - workflow_dispatch: - -jobs: - test: - strategy: - matrix: - python-version: [3.6, 3.7, 3.8, 3.9, 3.x] - runs-on: ubuntu-latest - name: 'Python ${{ matrix.python-version }}' - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '${{ matrix.python-version }}' - - name: Run tests - run: ./test/test.sh |