iamolegga/enviper

View on GitHub
.github/workflows/ci.yaml

Summary

Maintainability
Test Coverage
name: test

on:
  push:
    branches:
      - "**/*"
    tags-ignore:
      - v**
  pull_request:
    branches:
      - master

jobs:
  test:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v2.3.4

      - name: Setup go
        uses: actions/setup-go@v2
        with:
          go-version: '^1.14'

      - name: install
        run: |
          make install

      - name: test
        run: |
          make test