Skip to content

Test periodically

Test periodically #184

Workflow file for this run

name: Test periodically
on:
schedule:
- cron: "0 20 * * 1,4"
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Download Pandoc
run:
wget
https://github.com/jgm/pandoc/releases/download/2.18/pandoc-2.18-1-amd64.deb
- name: Install Pandoc
run: sudo dpkg -i pandoc-2.18-1-amd64.deb
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose