Skip to content

add shebang

add shebang #2

Workflow file for this run

name: build on Ubuntu 22

Check failure on line 1 in .github/workflows/testcommands.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/testcommands.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: install
on:
workflow_dispatch:
schedule:
- cron: '44 4 * * 0'
jobs:
install:
run-openmc-installer:
runs-on: ubuntu-22.04
steps:
- name: checkout_main_repo
uses: actions/checkout@v5
with:
repository: 'openmsr/are'
ref: '${{github.sha}}'
path: are
- name: bootstrap
run: sudo apt-get -y update
- name: environment
uses: mamba-org/setup-micromamba@v1
with:
environment-name: cad2omc
create-args: >-
python=3.10
openmc_0.13.3=dagmc_mpi_openmpi*
init_shell: bash
- name: check openmc
run: |
openmc --version
python -c "import openmc"
- name: install cad-to-openmc
run: |
python -m pip install upgrade pip
python -m pip install cad_to_openmc
- name:
run_tests:
strategy:
matrix:
command: ['k_eff','energy']
steps:
- name: run ${{ command }}
run: python run.py ${{ command }}