claw-cli 0.2.6

The compiler for the Claw language
name: CI

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: Info
      run: |
        rustc --version
        cargo --version

    - name: Build
      run: cargo build --workspace

    - name: Format
      run: cargo fmt --check

    - name: Lint
      run: cargo clippy -- -D warnings

    - name: Run tests
      run: cargo test --workspace