Merge remote-tracking branch 'tivvit/add-test-pipelines' into tivit-add-test-pipelines

pull/168/head
Simon Let 4 years ago
commit 02793d14af
No known key found for this signature in database
GPG Key ID: D650C65DD46D431D
  1. 22
      .github/workflows/go.yaml
  2. 17
      .github/workflows/sh.yaml
  3. 2
      Makefile
  4. 2
      README.md

@ -0,0 +1,22 @@
name: Go
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
- name: Vet
run: go vet ./...

@ -0,0 +1,17 @@
name: Shell
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up
run: sudo apt-get install -y shellcheck zsh
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: scripts/test.sh

@ -21,7 +21,7 @@ rebuild:
make build make build
clean: clean:
rm bin/resh-* rm -f bin/resh-*
uninstall: uninstall:
# Uninstalling ... # Uninstalling ...

@ -1,5 +1,7 @@
![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/curusarn/resh?sort=semver) ![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/curusarn/resh?sort=semver)
![Go test](https://github.com/curusarn/resh/actions/workflows/go.yaml/badge.svg)
![Shell test](https://github.com/curusarn/resh/actions/workflows/sh.yaml/badge.svg)
# Rich Enhanced Shell History # Rich Enhanced Shell History

Loading…
Cancel
Save