name: main on: - pull_request - push jobs: stable: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: toolchain: stable components: rustfmt, clippy - run: cargo clippy -- -W clippy::pedantic -A clippy::doc_link_with_quotes - run: cargo fmt --all -- --check - run: cargo test # - run: cargo install cargo-tarpaulin && cargo tarpaulin --out Xml # - uses: codecov/codecov-action@v1 - run: cargo doc --document-private-items --no-deps --release - run: echo '
Click here if you are not redirected.' > target/doc/index.html - name: Deploy uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages folder: target/doc single-commit: true commit-message: . git-config-name: Titus Wormer git-config-email: tituswormer@gmail.com