diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml deleted file mode 100644 index 6aa3236..0000000 --- a/.forgejo/workflows/test.yaml +++ /dev/null @@ -1,45 +0,0 @@ -# Workflow to verify CI environment and available tools -name: Test CI - -on: - push: - branches: [main] - pull_request: - workflow_dispatch: - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Verify tools - run: | - echo "=== Node.js ===" - node --version || echo "Node.js not available" - npm --version || echo "npm not available" - echo "" - echo "=== Git ===" - git --version - echo "" - echo "=== Build tools ===" - make --version 2>&1 | head -1 || echo "make not available" - gcc --version 2>&1 | head -1 || echo "gcc not available" - echo "" - echo "=== Container tools (Docker) ===" - docker --version || echo "Docker CLI not available" - echo "" - echo "=== Other tools ===" - curl --version 2>&1 | head -1 || echo "curl not available" - jq --version || echo "jq not available" - - - name: Show repo info - run: | - echo "Repository: ${{ github.repository }}" - echo "Event: ${{ github.event_name }}" - echo "Ref: ${{ github.ref }}" - echo "Branch: ${{ github.ref_name }}" - echo "" - echo "=== Files ===" - ls -la