We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0d2f0f commit 9d11989Copy full SHA for 9d11989
1 file changed
.github/workflows/ci.yml
@@ -19,24 +19,24 @@ env:
19
20
jobs:
21
ci:
22
+ runs-on: ubuntu-latest
23
container: openmc/openmc:v0.12.1
-
24
- steps:
25
- -
26
- name: Apt dependencies
27
- shell: bash
28
- run: sudo apt install -y libgl1-mesa
29
30
- uses: actions/checkout@v2
31
32
- name: Install
33
34
- run: |
35
- cd ${GITHUB_WORKSPACE}
36
- pip install .[test]
37
38
- name: Test
39
40
41
42
- pytest -v tests
+ steps:
+ -
+ name: Apt dependencies
+ shell: bash
+ run: sudo apt install -y libgl1-mesa
+ uses: actions/checkout@v2
+ name: Install
+ run: |
+ cd ${GITHUB_WORKSPACE}
+ pip install .[test]
+ name: Test
+ pytest -v tests
0 commit comments