From 03e2b93f56aa48028b0a408131a3bcfaf302cf25 Mon Sep 17 00:00:00 2001 From: YuruC3 <98943911+YuruC3@@users.noreply.github.com> Date: Sun, 11 May 2025 13:44:54 +0200 Subject: [PATCH] test --- .gitea/workflows/demo.yaml | 19 +++++++++++++++++++ .gitignore | 1 + code/main.py | 1 - 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 .gitea/workflows/demo.yaml diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml new file mode 100644 index 0000000..394c807 --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,19 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file diff --git a/.gitignore b/.gitignore index 5ceb386..90169eb 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ venv +docker \ No newline at end of file diff --git a/code/main.py b/code/main.py index ccd58ff..f055b8b 100644 --- a/code/main.py +++ b/code/main.py @@ -1,6 +1,5 @@ import requests, schedule, time from bs4 import BeautifulSoup -from collections import defaultdict from whatDomain import * DEBMIRRORURL = "https://www.debian.org/mirror/list"