Skip to content

Add getter method for private parameters struct field (#32) #59

Add getter method for private parameters struct field (#32)

Add getter method for private parameters struct field (#32) #59

Workflow file for this run

name: CI
on:
push:
branches:
- master
- "release/**"
pull_request:
jobs:
lints:
name: Lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features --workspace --tests --examples -- -D clippy::all
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: Test --no-default-features
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --no-default-features
- name: Test --all-features
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features