Skip to content

Added in an option to specify ebml size byte length; bump to version … #27

Added in an option to specify ebml size byte length; bump to version …

Added in an option to specify ebml size byte length; bump to version … #27

name: Pull Request Checks
on: [push]
jobs:
Verify-specification:
runs-on: ubuntu-latest
steps:
- name: Pull latest code files
uses: actions/checkout@v3
- name: Install rust tooling
uses: actions-rs/toolchain@v1.0.6
with:
toolchain: stable
components: clippy
- name: Set directory
run: cd ${{ github.workspace }}/specification
- name: Verify code compiles
run: cargo build
- name: Verify tests complete
run: cargo test
- name: Verify code style
run: "cargo clippy -- -D warnings"
Verify-specification-derive:
runs-on: ubuntu-latest
steps:
- name: Pull latest code files
uses: actions/checkout@v3
- name: Install rust tooling
uses: actions-rs/toolchain@v1.0.6
with:
toolchain: stable
components: clippy
- name: Set directory
run: cd ${{ github.workspace }}/specification-derive
- name: Verify code compiles
run: cargo build
- name: Verify tests complete
run: cargo test
- name: Verify code style
run: "cargo clippy -- -D warnings"
Verify-main-package:
runs-on: ubuntu-latest
steps:
- name: Pull latest code files
uses: actions/checkout@v3
- name: Install rust tooling
uses: actions-rs/toolchain@v1.0.6
with:
toolchain: stable
components: clippy
- name: Set directory
run: cd ${{ github.workspace }}
- name: Verify code compiles
run: cargo build
- name: Verify tests complete
run: cargo test
- name: Verify code style
run: "cargo clippy -- -D warnings"