2020-11-09 22:18:15 +00:00
|
|
|
name: For each commit and PR
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2020-11-18 09:55:42 +00:00
|
|
|
build:
|
2020-11-09 22:18:15 +00:00
|
|
|
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
|