Skip to content

feat: Add initial Rust projects with basic functionality and data typ… #9

feat: Add initial Rust projects with basic functionality and data typ…

feat: Add initial Rust projects with basic functionality and data typ… #9

Workflow file for this run

name: CI
on:
push:
# branches: [main]
# pull_request:
# branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: rustup toolchain install
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- name: Test all Rust projects
run: |
find . -name Cargo.toml -execdir cargo test --verbose \;
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: rustup toolchain install
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- name: Build all Rust projects
run: |
find . -name Cargo.toml -execdir cargo build --verbose \;