Skip to content

Add references

Add references #12

Workflow file for this run

name: SIEVE CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
context: .
tags: sieve:latest
cache-from: type=gha
cache-to: type=gha,mode=max
load: true
- name: setup build folder
run: mkdir -p build
- name: Build SIEVE
run: docker container run -v "./build:/sieve/build" sieve:latest
- name: Run SIEVE.js
run: node build/SIEVE.js