Skip to content

test mac

test mac #781

Workflow file for this run

name: Standard Build and Test
on:
# allows us to run workflows manually
workflow_dispatch:
push:
paths-ignore:
- 'docs/*'
- 'examples/*'
- 'img/*'
- 'news/*'
- 'tutorial/*'
- './*.rst'
- 'license.txt'
- 'PULL_REQUEST_TEMPLATE.md'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
BuildTest:
runs-on: ubuntu-latest
strategy:
matrix:
stage: [base_python, moab, dagmc, openmc]
fail-fast: false
container:
image: ghcr.io/pyne/pyne_ubuntu_22.04_py3/${{ matrix.stage }}:stable
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: use BuildTest composite action
uses: ./.github/actions/build-test
with:
stage: ${{ matrix.stage }}