diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml deleted file mode 100644 index da26faa4..00000000 --- a/.github/workflows/test.yaml +++ /dev/null @@ -1,60 +0,0 @@ -name: ci-test - -on: - push: - branches: [main, master] - pull_request: - branches: [main, master] - -jobs: - build-windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.10 - uses: actions/setup-python@v2 - with: - python-version: '3.10' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.dev.txt - pip install -e . - - name: Testing - run: | - python -m pytest tests - - build-linux: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.10 - uses: actions/setup-python@v2 - with: - python-version: '3.10' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.dev.txt - pip install -e . - - name: Testing - run: | - python -m pytest --cov=fastvector tests - python -m codecov - - build-macos: - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.10 - uses: actions/setup-python@v2 - with: - python-version: '3.10' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.dev.txt - pip install -e . - - name: Testing - run: | - python -m pytest tests