Skip to content

Add GitHub Actions for building and testing #1

Add GitHub Actions for building and testing

Add GitHub Actions for building and testing #1

Workflow file for this run

---
name: Rust
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install OpenCV
run: |
sudo apt-get update
sudo apt-get install -y libopencv-dev
- name: Run Tests
run: cargo test