14 lines
No EOL
292 B
YAML
14 lines
No EOL
292 B
YAML
name: Pipeline main branch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest # Or other appropriate runner
|
|
steps:
|
|
- uses: actions/checkout@v4 # Checkout the repository
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: cargo test --all-features |