Skip to content

feat(python): add GUNTAM Python-callable seeding example #8631

feat(python): add GUNTAM Python-callable seeding example

feat(python): add GUNTAM Python-callable seeding example #8631

Workflow file for this run

name: Devcontainer CI
on:
push:
pull_request:
branches:
- main
- 'release/**'
- 'develop/**'
permissions:
contents: read
jobs:
devcontainer-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
persist-credentials: false
- name: Install devcontainer CLI
run: |
npm install -g @devcontainers/cli
- name: Build devcontainer
run: |
devcontainer up --workspace-folder .
- name: Run configure_acts
run: |
devcontainer exec --workspace-folder . bash -c "configure_acts"
- name: Run build_acts with ActsCore target
run: |
devcontainer exec --workspace-folder . bash -c "build_acts --target ActsCore"