Skip to content

Replace openssl with p256 #10

Replace openssl with p256

Replace openssl with p256 #10

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install nightly toolchain
run: rustup install nightly
- name: Add rustfmt for nightly
run: rustup component add rustfmt --toolchain nightly
- name: Check
run: cargo +nightly fmt --all --check -- --config format_code_in_doc_comments=true
check:
name: Check crate
runs-on: ubuntu-latest
strategy:
matrix:
args:
- coinbase-api
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Check
run: cargo check -p ${{ matrix.args }}
- name: Clippy
run: cargo clippy -p ${{ matrix.args }} -- -D warnings
- name: Test
run: cargo test -p ${{ matrix.args }}