From 4387a46172a47187c56d11ca8b1a6a472a2fc82a Mon Sep 17 00:00:00 2001 From: Djalim Simaila Date: Sun, 26 Apr 2026 15:06:20 +0200 Subject: [PATCH] chore: remove .github workflows (act only uses .gitea) --- .github/workflows/deploy.yml | 27 --------------------------- .github/workflows/lint.yml | 29 ----------------------------- 2 files changed, 56 deletions(-) delete mode 100644 .github/workflows/deploy.yml delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 7e44244..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: "Build and push image" - -on: - push: - branches: - - main - -jobs: - deploy: - name: "Build Docker image" - runs-on: ubuntu-latest - steps: - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - registry: registry.docker.polytech.djalim.fr - username: ${{ secrets.registry_login }} - password: ${{ secrets.registry_pass }} - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Build and push - uses: docker/build-push-action@v6 - with: - push: true - tags: registry.docker.polytech.djalim.fr/polympr:latest diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 5194ae0..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: "Check Deno code" - -on: - pull_request: - branches: - - main - -permissions: - contents: read - -jobs: - check-code: - name: "Check Deno code" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: denoland/setup-deno@v2 - with: - deno-version: v2.x - - - name: Check formatting - run: deno fmt --check - - - name: Check linting - run: deno lint - - - name: Run tests - run: deno test -A --no-check tests/