Skip to content

Dynamic Codegen in Rust with Daedalus #132

Dynamic Codegen in Rust with Daedalus

Dynamic Codegen in Rust with Daedalus #132

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
- Develop
pull_request:
branches:
- main
- Develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Rust
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Python
run: sudo apt-get install python3
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose
- name: Clippy
run: cargo clippy --verbose -- -D warnings
- name: Audit
run: cargo audit