Skip to content

Update yml

Update yml #1

Workflow file for this run

name: Rust - Hello
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_hello:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build and test in hello directory
run: |
cd hello
cargo build --verbose
cargo test --verbose