Skip to content

docs: additional steps for getting started without a dev container #116

docs: additional steps for getting started without a dev container

docs: additional steps for getting started without a dev container #116

Workflow file for this run

name: ci-test
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ci-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # get all branches so that we can check out main to compare lint scores
- name: Run make ci-build in dev container
uses: devcontainers/[email protected]
with:
# TODO - cache dev container image
push: never
env: |
GITHUB_BASE_REF
runCmd: |
echo -e "Running ci-build for ref:$GITHUB_BASE_REF\n\n"
make install-requirements
echo -e "\n\n------------------------------ version --------------------------------------------------\n\n"
python --version
pip freeze
echo -e "\n\n------------------------------ lint --------------------------------------------------\n\n"
./scripts/ci-lint.sh
echo -e "\n\n------------------------------ test --------------------------------------------------\n\n"
make test