Skip to content

Temporary disable test CI #126

Temporary disable test CI

Temporary disable test CI #126

Workflow file for this run

# A basic action that deploys to the server
name: CI
on: [push]
jobs:
# test:
# runs-on: Ubuntu-22.04
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Set up Python 3.13
# uses: actions/setup-python@v5
# with:
# python-version: "3.13"
# - name: Install dependencies
# run: python -m pip install -r requirements.txt
# - name: Test with pytest
# run: python -m pytest
deploy:

Check failure on line 25 in .github/workflows/CI.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yml (Line: 25, Col: 3): The workflow must contain at least one job with no dependencies.

Check failure on line 25 in .github/workflows/CI.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yml (Line: 25, Col: 3): The workflow must contain at least one job with no dependencies.
needs: test
if: ${{ github.ref_name == 'main' }}
runs-on: ubuntu-latest
steps:
- name: deploy on production server
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
script_stop: true
script: |
cd better-tiss-calendar
git pull
npm install
npx tailwindcss --minify -i app/templates/template.css -o app/static/style.css
uv sync
systemctl --user restart bettercal.service