fix accidental removal of several lines at the end of matl buy policy… #13
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: Build/Test for PR and collaborator push | |
on: | |
# allows us to run workflows manually | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- '.github/workflows/build_test_publish.yml' | |
- '.github/workflows/changelog_test.yml' | |
- 'docker/**' | |
- 'doc/**' | |
push: | |
paths-ignore: | |
- '.github/workflows/build_test_publish.yml' | |
- '.github/workflows/changelog_test.yml' | |
- 'docker/**' | |
- 'doc/**' | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ubuntu_versions : [ | |
20.04, | |
22.04, | |
] | |
pkg_mgr : [ | |
apt, | |
conda | |
] | |
container: | |
image: ghcr.io/cyclus/cyclus_${{ matrix.ubuntu_versions }}_${{ matrix.pkg_mgr }}/${{ matrix.pkg_mgr }}-deps | |
steps: | |
- name: Checkout and Build Cyclus | |
uses: actions/checkout@v3 | |
- name: Building Cyclus | |
run: | | |
mkdir -p `python -m site --user-site` | |
python install.py -j 2 --build-type=Release --core-version 999999.999999 | |
echo "PATH=${HOME}/.local/bin:$PATH" >> "$GITHUB_ENV" | |
echo "LD_LIBRARY_PATH=${HOME}/.local/lib:${HOME}/.local/lib/cyclus:$LD_LIBRARY_PATH" >> "$GITHUB_ENV" | |
- name: Cyclus Unit Tests | |
run: | | |
cyclus_unit_tests | |
- name: Cyclus Python Tests | |
run: | | |
cd tests && python -m pytest --ignore test_main.py |