Skip to content

Test CI/CD

Test CI/CD #2

Workflow file for this run

# on:
# push:
# branches:
# - main
# - '*'
# concurrency:
# group: on-push-main
# cancel-in-progress: true
# jobs:
# main:
# runs-on: ubuntu-latest
# permissions:
# contents: read
# packages: write
# steps:
# - uses: actions/checkout@v4
# - run: pipx install poetry
# - uses: actions/setup-python@v5
# with:
# python-version: 3.12
# cache: 'poetry'
# - run: poetry install
# # - run: poetry run inv docs
# # - run: poetry run inv checks
# - run: poetry run inv packages
# # - uses: JamesIves/github-pages-deploy-action@v4
# # with:
# # folder: docs/
# # branch: gh-pages
# - uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# - uses: docker/build-push-action@v5
# with:
# context: .
# push: true
# tags: ghcr.io/fmind/mlops-python-package:latest