Skip to content

fix: correct vec capacity for blob challenge data (#51) #53

fix: correct vec capacity for blob challenge data (#51)

fix: correct vec capacity for blob challenge data (#51) #53

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
lfs: true
- name: build
run: cargo build --all --all-targets --all-features --verbose
- name: test
run: cargo test --all --all-features --verbose
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: format
run: cargo fmt --all --check
- name: clippy
run: cargo clippy --all --all-targets --all-features --verbose -- -W clippy::std_instead_of_core -D warnings