Add calculation of EM energy in RZ #224
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: Windows | |
on: [push, pull_request] | |
jobs: | |
win_pip: | |
name: Windows | |
strategy: | |
matrix: | |
python-version: [3.10] | |
os: [windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install cython numpy scipy h5py openpmd-api matplotlib jupyter pytest pyflakes wget; | |
python setup.py install | |
- name: Test | |
run: python -m pytest tests |