Skip to content

Remove GitLab CI: CI/CD moved to GitHub Actions #4

Remove GitLab CI: CI/CD moved to GitHub Actions

Remove GitLab CI: CI/CD moved to GitHub Actions #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy -- -D warnings
- run: cargo test
- run: cargo build --release