diatom 0.5.2

The diatom programming language
Documentation
name: CI - Build & Test

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build_and_test:
    name: Build and Test
    runs-on: ubuntu-latest
    steps:
      - name: Checkout sources
        uses: actions/checkout@v2

      - name: Install stable toolchain
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true
          
      - name: Run cargo build
        uses: actions-rs/cargo@v1
        with:
          command: build
          
      - name: Run cargo test
        uses: actions-rs/cargo@v1
        with:
          command: test