Skip to content

Make tab indent and shift-tab outdent in CodeMirror. #41

Make tab indent and shift-tab outdent in CodeMirror.

Make tab indent and shift-tab outdent in CodeMirror. #41

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
# Latest stable version of Go, e.g. 1.20.2
go-version: 'stable'
- name: Ensure all files were formatted as per gofmt
run: |
[ "$(gofmt -l $(find . -name '*.go') 2>&1)" = "" ]
- name: run tests
run: go test -v ./...