We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 612cc44 commit 904df2cCopy full SHA for 904df2c
2 files changed
.github/workflows/ci.yml
@@ -45,9 +45,10 @@ jobs:
45
46
tests:
47
runs-on: ubuntu-latest
48
- needs: build-docker-image
49
- if: needs.build-docker-image.outputs.build_ran == 'true' ||
50
- needs.build-docker-image.outputs.build_ran == ''
+ if: |
+ (github.event_name == 'push' || github.event_name == 'pull_request') &&
+ (needs.build-docker-image.outputs.build_ran == 'true' ||
51
+ needs.build-docker-image.outputs.build_ran == '')
52
steps:
53
- name: Check out repository
54
uses: actions/checkout@v4
nix_test_env/docker_entrypoint.sh
@@ -2,6 +2,7 @@
2
set -euo pipefail
3
4
export __HM_SESS_VARS_SOURCED="${__HM_SESS_VARS_SOURCED:-0}"
5
+
6
source /root/.nix-profile/etc/profile.d/hm-session-vars.sh
7
8
if [[ $# -eq 0 ]]; then
0 commit comments