mirror of
https://github.com/darkicewolf50/RustBrock.git
synced 2025-07-08 20:17:14 -06:00
.github
workflows
rust.yml
.obsidian
HelloWorld
branches
functions_rust
guessing_game
hello_cargo
loops
ownership
rectangles
.gitignore
Constants.md
Crates.md
Data Types.md
Enums.md
Modules and Use.md
Packages.md
Paths.md
Primitives.md
Project Organization.md
README.md
Structures.md
Variables.md
data_types.md
ownership.md
23 lines
324 B
YAML
23 lines
324 B
YAML
name: Rust
|
|
|
|
on:
|
|
# push:
|
|
# branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Run tests
|
|
run: cargo test --verbose
|