diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml deleted file mode 100644 index d99f5325e..000000000 --- a/.github/workflows/ci-tests.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: CI tests - -on: - pull_request: - branches: [ master ] - paths-ignore: - - '**/README.md' - - 'docs/**' - -jobs: - ci: - runs-on: ubuntu-latest - - strategy: - matrix: - python: [3.7, 3.8, 3.9, 3.10, 3.11] - - steps: - - name: Checkout repo - uses: actions/checkout@v2 - - - name: Setup python - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python }} - - - name: Upgrade pip - run: pip install --upgrade pip pipenv - - - name: Install pipenv - run: pipenv install --dev --skip-lock --python ${{ matrix.python }} - - - name: Run make ci - run: make ci diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59d7b7b21..d99f5325e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: CI testing +name: CI tests on: pull_request: