Skip to content

Fix unsoundness in PdInfo::as_struct() #91

Fix unsoundness in PdInfo::as_struct()

Fix unsoundness in PdInfo::as_struct() #91

Workflow file for this run

#
# Copyright (c) 2023 Siddharth Chandrasekaran <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
#
name: Build CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup rust
uses: actions-rust-lang/[email protected]
with:
toolchain: stable
components: rustfmt, clippy
- run: cargo check
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup rust
uses: actions-rust-lang/[email protected]
with:
toolchain: stable
- name: Cargo test
run: cargo test