Skip to content

ci: no new versions, but keep building images #7

ci: no new versions, but keep building images

ci: no new versions, but keep building images #7

Workflow file for this run

name: Releases
on:
push:
branches: [main]
env:
PYTHON_VERSION: 3.9
jobs:
labeler:
name: Update labels
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Run Labeler
uses: crazy-max/[email protected]
continuous-integration:
name: Continuous Integration
uses: "./.github/workflows/continuous_integration.yml"
secrets: inherit
tests:
name: Tests
uses: "./.github/workflows/tests.yml"
secrets: inherit
build_image:
name: Build image
uses: "./.github/workflows/build-image.yml"
secrets: inherit
needs: [continuous-integration, tests]