-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (42 loc) · 998 Bytes
/
build_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Standard Build and Test
on:
# allows us to run workflows manually
workflow_dispatch:
pull_request:
paths-ignore:
- 'docs/*'
- 'examples/*'
- 'img/*'
- 'news/*'
- 'tutorial/*'
- './*.rst'
- 'license.txt'
- 'PULL_REQUEST_TEMPLATE.md'
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 }}