0.26.3 release preparation, GLOBALTRUST 2020 removal #1197
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: webpki-roots | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 18 * * *' | |
jobs: | |
build: | |
name: Build+test | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: cargo build (debug; default features) | |
run: cargo build --all-targets | |
- name: cargo clippy | |
run: cargo clippy --all-targets -- -D warnings | |
- name: cargo test (debug; default features) | |
run: cargo test |