arc-isle 0.1.2

The Interface Specification Language for the Arc project: design and implementation
Documentation
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build-linux:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: Build for Linux
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose
  build-macos:
    runs-on: macos-latest
    steps:
    - uses: actions/checkout@v4
    - name: Build for macOS
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose
  build-windows:
    runs-on: windows-latest
    steps:
    - uses: actions/checkout@v4
    - name: Build for Windows
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose