Skip to content

Weekly Jobs

Weekly Jobs #592

Workflow file for this run

name: Weekly Jobs
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable, nightly]
steps:
- uses: hecrj/setup-rust-action@v2
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master
- name: Run tests
run: cargo test --verbose
env:
Client_ID: ${{secrets.ClientID}}
Client_Secret: ${{secrets.ClientSecret}}