gpg/.github/workflows/ci.yml

36 lines
620 B
YAML
Raw Normal View History

2020-05-03 15:09:41 -04:00
name: ci
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
ci:
2020-05-03 15:35:54 -04:00
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
2020-05-03 15:09:41 -04:00
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Build
run: |
npm install
npm run build
-
name: Import GPG key
uses: ./
env:
SIGNING_KEY: ${{ secrets.SIGNING_KEY_TEST }}
PASSPHRASE: ${{ secrets.PASSPHRASE_TEST }}