forked from lix-project/hydra
23 lines
559 B
YAML
23 lines
559 B
YAML
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
|
|
- run: nix-build -A checks.x86_64-linux.build
|
|
#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"
|