enum_pipeline 2.0.0

Provides a way to use enums to describe and execute ordered data pipelines.
Documentation
# This is a basic workflow to ensure code builds and passes tests.

name: CI

# Controls when the workflow will run
on:
  # Triggers the workflow on pull_request and push but only when the target is the main branch
  pull_request:
    branches: [main]
  push:
    branches: [main]
  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  # This workflow contains a single job called "build"
  build:
    # The type of runner that the job will run on
    runs-on: ubuntu-latest

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      # Checkout our code
      - uses: actions/checkout@v2
      # Install Just, so we can use our Justfile in the action
      - run: cargo install just
      # Install necessary tools
      - run: just install-tools
      # Check our code
      - run: just check
      # Run tests
      - run: just test