Skip to content

Bump serde_json from 1.0.99 to 1.0.109 #309

Bump serde_json from 1.0.99 to 1.0.109

Bump serde_json from 1.0.99 to 1.0.109 #309

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: clippy
- name: Lint
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- name: Run tests
if: ${{ runner.os == 'Linux' }}
uses: actions-rs/[email protected]
with:
version: 0.22.0
- name: Run tests (Windows)
if: ${{ runner.os == 'Windows' }}
uses: actions-rs/cargo@v1
with:
command: test
- name: Upload to codecov
if: ${{ runner.os == 'Linux' }}
uses: codecov/codecov-action@v2
- name: Run Benchmarks
uses: actions-rs/cargo@v1
with:
command: bench
- name: Publish artifact
uses: actions/[email protected]
with:
name: trackie
path: |
target/release/trackie
target/release/trackie.exe
if-no-files-found: error