Skip to content

now that we don't clone SignatureType we can pass it into struct crea… #411

now that we don't clone SignatureType we can pass it into struct crea…

now that we don't clone SignatureType we can pass it into struct crea… #411

Workflow file for this run

#on: [push, pull_request]
on: [push]
name: CI
jobs:
check:
name: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check
test-all:
name: test-all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
fmt:
name: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings -A clippy::op-ref -A clippy::needless-range-loop
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install LaTeX
run: ./.doc/install-latex-ubuntu.sh
- name: Build WebSite
run: ./.doc/build.sh
- name: upload pdf
uses: actions/upload-artifact@v3
with:
name: wsts.pdf
path: wsts.pdf
- name: upload website
uses: actions/upload-artifact@v3
with:
name: website
path: ./target/doc/