Skip to content

Bump net2 from 0.2.34 to 0.2.38 in /libDS #34

Bump net2 from 0.2.34 to 0.2.38 in /libDS

Bump net2 from 0.2.34 to 0.2.38 in /libDS #34

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: rust-toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
- name: rust-clippy-check
uses: actions-rs/[email protected]
with:
# GitHub token
token: ${{ secrets.GITHUB_TOKEN }}
- name: Formatter
uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}