Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
branches: [main, test]
pull_request:
branches: [main, test]
schedule:
# Weekly full mutation testing - Sundays at 2:00 AM UTC
- cron: '0 2 * * 0'
workflow_dispatch:
inputs:
full_mutation:
Expand Down Expand Up @@ -136,9 +139,21 @@ jobs:

full-mutation:
name: Full Mutation Testing
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.full_mutation == 'true' }}
if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.full_mutation == 'true') }}
runs-on: ubuntu-latest
steps:
- name: Free disk space
run: |
echo "=== Disk usage before cleanup ==="
df -h /
echo "=== Removing unnecessary tools ==="
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo docker image prune -af || true
echo "=== Disk usage after cleanup ==="
df -h /
- uses: actions/checkout@v6
with:
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion docs/test-results.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"github.com/Its-donkey/yougopher/docs/examples/chatbot": 0.0,
"github.com/Its-donkey/yougopher/docs/examples/analytics": 0.0
},
"lastUpdated": "2026-01-30 08:52 UTC"
"lastUpdated": "2026-01-30 10:15 UTC"
},
"mutation": {
"summary": {
Expand Down
Loading