Skip to content

docs: updated readme with installation and running instructions #9

docs: updated readme with installation and running instructions

docs: updated readme with installation and running instructions #9

Workflow file for this run

name: CI for Pluto
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Build and test
run: |
go build -v ./...
go test -v ./tests/unit/...