Make autocomplete_metadata.py emit schema-compliant molecule metadata and improve CI tests
#464
Workflow file for this run
This file contains hidden or 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
| # This workflow builds and checks the package for release | |
| name: Build | |
| on: | |
| pull_request: | |
| # Check all PR | |
| jobs: | |
| build: | |
| if: github.repository == 'NMRLipids/FAIRMD_lipids' | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - run: pip install tox | |
| - name: Test build integrity | |
| run: tox -e build |