Added in an option to specify ebml size byte length; bump to version … #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |