[GENIE] Add support for genie-icetray. #217
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
# SPDX-FileCopyrightText: © 2022 the SimWeights contributors | |
# | |
# SPDX-License-Identifier: BSD-2-Clause | |
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
os: [ubuntu-22.04] | |
include: | |
- python-version: "3.12" | |
os: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: Install SimWeights | |
run: | | |
python3 -m pip install flit | |
python3 -m flit install --symlink --deps=production --extras=test | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
python3 -m pip install nuflux | |
fi | |
- name: Download Test Data | |
run: curl -u icecube:${{secrets.ICECUBE_PASSWORD}} https://convey.icecube.wisc.edu/data/ana/Software/simweights/test-data/simweights_testdata.tar.gz | tar xz | |
- name: Run Tests | |
env: | |
SIMWEIGHTS_TESTDATA: . | |
run: python3 -m pytest --cov-report=xml --junit-xml=test-results-${{matrix.os}}-${{matrix.python-version}}.junit.xml | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
if-no-files-found: error | |
name: test-results-${{matrix.os}}-${{matrix.python-version}} | |
path: test-results-${{matrix.os}}-${{matrix.python-version}}.junit.xml | |
- name: Upload Coverage to Codecov | |
if: ${{ !github.event.act }} | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
fail_ci_if_error: false | |
verbose: true | |
publish-test-results: | |
name: "Publish Tests Results" | |
needs: Tests | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: read | |
if: always() | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: . | |
pattern: test-results-* | |
merge-multiple: true | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
with: | |
files: "*.xml" | |
deduplicate_classes_by_file_name: true |