Skip to content

feat: add GitHub Actions workflow for CLI testing and update README b… #25

feat: add GitHub Actions workflow for CLI testing and update README b…

feat: add GitHub Actions workflow for CLI testing and update README b… #25

Workflow file for this run

name: Test Daily
on:
push:
branches:
- main
schedule:
- cron: "0 8 * * *"
jobs:
test:
uses: ./.github/workflows/test.yml
create_issue_if_failure:
if: failure()
runs-on: ubuntu-latest
steps:
- name: Create an issue for test failure
uses: peter-evans/create-issue-from-file@v4
with:
title: "Test failure detected"
content-filepath: test_output.log
labels: bug