Skip to content

Bump golang.org/x/sync from 0.7.0 to 0.18.0 #108

Bump golang.org/x/sync from 0.7.0 to 0.18.0

Bump golang.org/x/sync from 0.7.0 to 0.18.0 #108

Workflow file for this run

name: "Build and test"
on:
push:
branches: [main]
pull_request: {}
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run format
run: "! make fmt | grep . || { echo 'Go not formatted'; exit 1; }"
- name: Build program
run: make build
- name: Run tests
run: make test