Skip to content

ci: Refactor CI workflow #5

ci: Refactor CI workflow

ci: Refactor CI workflow #5

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
pull_request:
paths:
- .github/workflows/rust.yml
- Cargo.toml
- crates/**
- src/**
jobs:
hello:
runs-on: ubuntu-latest
steps:
- run: |
echo "Hello, World!"
exit 0