Refactors node creation to require contexts; implements bind scopes more correctly #123
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Continuous Integration" | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
paths: [ "*.go" ] | |
pull_request: | |
branches: [ main ] | |
paths: [ "*.go" ] | |
jobs: | |
ci: | |
name: "Tests" | |
runs-on: ubuntu-latest | |
env: | |
GOOS: "linux" | |
GOARCH: "amd64" | |
GO111MODULE: "on" | |
CGO_ENABLED: "0" | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: Check out go-incr | |
uses: actions/checkout@v3 | |
- name: Run all tests | |
run: go test ./... | |