Skip to content

Daily Test

Daily Test #19

Workflow file for this run

name: Daily Test
on:
schedule:
- cron: '0 0 * * *' # Daily schedule
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose --all-features
test-with-session:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
env:
WEBTOON_SESSION: ${{ secrets.WEBTOON_SESSION }}
run: cargo test --verbose --all-features