Skip to content

Switch CI to GitHub Actions #2

Switch CI to GitHub Actions

Switch CI to GitHub Actions #2

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build
- name: Test
run: cargo test --include-ignored
#- name: clippy
#run: cargo clippy --all-targets -- -D warnings