mirror of
https://github.com/ManiMatter/decluttarr.git
synced 2026-04-18 12:54:02 +02:00
83 lines
2.2 KiB
YAML
83 lines
2.2 KiB
YAML
name: Unit Tests & Dev Deployment
|
|
|
|
on:
|
|
push:
|
|
branches: [ "dev" ]
|
|
paths:
|
|
- '**/*'
|
|
- '!README.md'
|
|
- '!CONTRIBUTE.md'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
unit-tests:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: '.'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10.13'
|
|
- name: Install pip and pytest
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r docker/requirements.txt
|
|
- name: Test with pytest
|
|
run: |
|
|
python3 -m pytest --import-mode=append tests/
|
|
|
|
build-dev:
|
|
needs: unit-tests
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: '.'
|
|
steps:
|
|
- name: 'Checkout GitHub Action'
|
|
uses: actions/checkout@main
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: 'Login to GitHub Container Registry'
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{github.actor}}
|
|
password: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
- name: Store short Commit ID in env variable
|
|
id: vars
|
|
run: |
|
|
calculatedSha=$(git rev-parse --short ${{ github.sha }})
|
|
echo "SHORT_COMMIT_ID=$calculatedSha" >> $GITHUB_ENV
|
|
|
|
- name: "Build, Tag, and push the Docker image"
|
|
env:
|
|
IMAGE_NAME: ghcr.io/manimatter/decluttarr
|
|
IMAGE_TAG: dev
|
|
run: |
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64 -f docker/Dockerfile . \
|
|
--progress plain \
|
|
-t $IMAGE_NAME:$IMAGE_TAG \
|
|
--label com.decluttarr.version=$IMAGE_TAG \
|
|
--label com.decluttarr.commit=$SHORT_COMMIT_ID \
|
|
--build-arg IMAGE_TAG=$IMAGE_TAG \
|
|
--build-arg SHORT_COMMIT_ID=$SHORT_COMMIT_ID \
|
|
--push \
|
|
|
|
|
|
# - name: "Delete untagged versions"
|
|
# uses: actions/delete-package-versions@v4
|
|
# with:
|
|
# package-name: 'decluttarr'
|
|
# package-type: 'container'
|
|
# delete-only-untagged-versions: 'true'
|