set pageview count of forked session to 0 #545
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: push | |
on: | |
push: | |
paths-ignore: | |
- ".gitignore" | |
- ".github/images" | |
- "README.md" | |
jobs: | |
push: | |
if: "! contains(github.ref, 'refs/tags/')" | |
runs-on: ubuntu-20.04 | |
env: | |
GENENV_FILE: ./config/genenv.ci.sh | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v24 | |
with: | |
extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm" | |
- run: printenv | |
- name: Lint | |
run: nix develop --command make lint | |
- name: Unit tests | |
run: nix develop --command make test/unit | |
- name: Integration tests | |
run: nix develop --command make test/integ | |
- name: Docker build | |
run: REMOVE_RESULT=0 nix develop --command make docker/build | |
- name: End to end tests | |
run: nix develop --command make -j test/e2e | |
- name: Store docker image as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docker-image | |
path: ./result | |