ICTU/quality-time

View on GitHub
.github/workflows/feature-tests.yml

Summary

Maintainability
Test Coverage
---
name: Feature tests

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4.2.2
      - name: Login to DockerHub
        uses: docker/login-action@v3
        with:
          username: ${{ secrets.DOCKER_USERNAME }}
          password: ${{ secrets.DOCKER_PASSWORD }}
      - name: Install uv
        uses: astral-sh/setup-uv@v3
        with:
          version: "0.4.22"
      - name: Run feature tests
        run: ./tests/feature_tests/ci/test.sh
      - name: Upload artifacts
        uses: actions/upload-artifact@v4
        if: always()
        with:
          name: build-artifacts
          path: build