forked from cross-rs/cross
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 843 Bytes
/
weekly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
on:
schedule:
- cron: '0 0 * * 5'
workflow_dispatch:
inputs:
targets:
required: false
description: 'check these space or comma separated targets, supports wildcard *'
name: Check
env:
CARGO_NET_RETRY: 3
CARGO_HTTP_CHECK_REVOKE: false
jobs:
weekly:
uses: ./.github/workflows/ci.yml
with:
matrix-args: --weekly
wiki:
name: Ensure wiki is valid
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-rust
- run: git clone ${wikirepo}
shell: bash
env:
wikirepo: https://github.com/${{ github.repository }}.wiki.git
- run: cargo test toml_check -- --nocapture
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1