Skip to content

Bump byteorder from 1.4.3 to 1.5.0 #311

Bump byteorder from 1.4.3 to 1.5.0

Bump byteorder from 1.4.3 to 1.5.0 #311

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- run: rustup update
- run: cargo build
- run: cargo test
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: cargo fmt -- --check
- run: cargo clippy