Files
training-software/.github/workflows/deploy-checks.yml
Paperclip CTO d868a04032
Some checks failed
CI Deploy Checks / Build Container (push) Successful in 6s
CI Quality / Ruff Lint (push) Failing after 6s
CI Tests / Django Tests (push) Has been cancelled
CI Tests / OpenAPI Schema (push) Has been cancelled
CI Security / Bandit + pip-audit (push) Has been cancelled
ci: split workflows into quality, tests, security, deploy checks
2026-05-19 13:46:33 +02:00

18 lines
315 B
YAML

name: CI Deploy Checks
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build-container:
name: Build Container
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build image
run: docker build -t training-software:ci .