mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
47 lines
955 B
YAML
47 lines
955 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-based-test:
|
|
- 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: GITSECRET_DOCKER_ENV="${{ matrix.docker-based-test }}" 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
|