PDFT meta-GGA nuclear gradients and MS-PDFT meta-GGA tests #334
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
#FIXME: workflow dependency not working on non-default branch? | |
#on: | |
# workflow_run: | |
# workflows: | |
# - Lint | |
# types: | |
# - completed | |
on: | |
- push | |
- pull_request | |
jobs: | |
linux-build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.10","3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install | |
run: ./.github/workflows/run_ci.sh | |
- name: Test with pytest | |
run: ./.github/workflows/test.sh |