Skip to content

feat: add function to get jsonlogic with solved vars (replaced by val… #36

feat: add function to get jsonlogic with solved vars (replaced by val…

feat: add function to get jsonlogic with solved vars (replaced by val… #36

Workflow file for this run

on: [push, pull_request]
name: Continuous Integration
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.14', '1.15', '1.16', '1.18', '1.19']
name: Running with Go ${{ matrix.go }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v2
- name: Run the tests
run: go test -coverprofile=coverage.txt -covermode=count ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
files: coverage.txt