hydra/.github/workflows/test.yml

23 lines
559 B
YAML
Raw Normal View History

name: "Test"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v12
#- run: nix flake check
2020-04-15 22:33:02 +00:00
- run: nix-build -A checks.x86_64-linux.build
2021-01-03 17:37:18 +00:00
#validate-openapi:
# runs-on: ubuntu-18.04
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - uses: cachix/install-nix-action@v12
# - run: nix-shell -p openapi-generator-cli --run "openapi-generator-cli validate -i ./hydra-api.yaml"