Skip to content

chore: add automated releasing pipeline #39

chore: add automated releasing pipeline

chore: add automated releasing pipeline #39

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [ 'master' ]
merge_group:
types: [ checks_requested ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Rust project
run: cargo build
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test
lint:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Clippy
run: rustup component add clippy
- name: Linter
run: cargo clippy