More extensive MP/WBM data analysis for site and SI #683
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
release: | |
types: [published] | |
workflow_dispatch: | |
inputs: | |
task: | |
type: choice | |
options: [tests, release] | |
default: tests | |
description: Only run tests or release a new version of pymatgen to PyPI after tests pass. | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
uses: janosh/workflows/.github/workflows/pytest-release.yml@main | |
with: | |
os: ${{ matrix.os }} |