[go: up one dir, main page]

ffi 0.1.1

Macro for routing C FFI callbacks to struct methods
Documentation
# Copyright (C) 2024 Rowan Hart
# SPDX-License-Identifier: Apache-2.0
---
name: Build and Test

on:
  push:
    branches: ["main"]
  pull_request:
    branches: ["main"]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - name: Build
        run: cargo build --verbose
      - name: Check
        run: cargo clippy --verbose
      - name: Run tests
        run: cargo test --verbose