diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f324ec7f..d562ebd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: continuous-integration +name: ci on: [push, pull_request] @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.12' - name: Install Python dependencies run: pip install -e .[pre-commit] @@ -45,7 +45,7 @@ jobs: run: pip install -e .[tests] - name: Run pytest - run: pytest -sv --cov=plumpy test + run: pytest -s --cov=plumpy test - name: Create xml coverage run: coverage xml