Skip to content

Bump windows_x86_64_msvc from 0.52.4 to 0.52.6 #15

Bump windows_x86_64_msvc from 0.52.4 to 0.52.6

Bump windows_x86_64_msvc from 0.52.4 to 0.52.6 #15

Workflow file for this run

on:
pull_request: {}
push:
branches: master
name: Continuous integration
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: build
- uses: actions-rs/cargo@v1
with:
command: test
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}