16 lines
No EOL
339 B
YAML
16 lines
No EOL
339 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: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
- run: cargo build --release --all-features |