From f133299bec9b7e2766fb97a7ed6be6f406de4a6a Mon Sep 17 00:00:00 2001 From: Manuel Mendez Date: Mon, 9 Nov 2020 17:18:15 -0500 Subject: [PATCH] Add ci-non-go.sh checks as part of CI Signed-off-by: Manuel Mendez --- .github/workflows/ci.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..b990498 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,19 @@ +name: For each commit and PR +on: + push: + pull_request: + +jobs: + validation: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + lfs: true + - name: Install nix + uses: cachix/install-nix-action@v12 + with: + nix_path: nixpkgs=channel:nixpkgs-unstable + - name: Run ci-checks.sh + run: ./.github/workflows/ci-non-go.sh