Version 1.1.0.6 #46
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: 🍏 macOS | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-macos | |
cancel-in-progress: true | |
jobs: | |
build_macOS: | |
name: macOS | |
runs-on: macos-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Dependencies | |
run: | | |
python3 -m venv py-venv | |
source py-venv/bin/activate | |
python3 -m pip install --upgrade pyflakes | |
python3 -m pip install --upgrade -r requirements.txt | |
python3 -m pyflakes openpmd_validator | |
- name: Test | |
run: | | |
source py-venv/bin/activate | |
python3 -m pip install . | |
openPMD_createExamples_h5 | |
openPMD_check_h5 -i example.h5 --EDPIC |