git-secret/.github/workflows/test.yml
Nikita Sobolev 19941f91f4
Adds release-ci script to test installation (#664)
* Adds release-ci script to test installation

* Fixes CI

* Fixes CI

* Renames some variables to follow the same SECRETS_ convention
2021-05-05 15:59:28 +03:00

47 lines
939 B
YAML

name: test
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Shellcheck and Hadolint
run: make lint
docker-ci:
runs-on: ubuntu-latest
strategy:
matrix:
docker-env:
- debian-gnupg1 # We need to test legacy version of gnupg
- debian-gnupg2
- ubuntu
- alpine
- fedora
- centos
steps:
- uses: actions/checkout@v2
- name: Run checks
run: SECRETS_DOCKER_ENV="${{ matrix.docker-env }}" make docker-ci
osx-ci:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Run checks
run: brew install gawk gnupg && make test
build-man:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checks that manual generation works
run: make build-man