Kissaki@programming.dev to Programming@programming.devEnglish · 1 month agoThe Pain That is GitHub Actions - Feldera Blogwww.feldera.comexternal-linkmessage-square25fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkThe Pain That is GitHub Actions - Feldera Blogwww.feldera.comKissaki@programming.dev to Programming@programming.devEnglish · 1 month agomessage-square25fedilink
minus-squarenormalexit@lemmy.worldlinkfedilinkarrow-up0·1 month agoThis is the way. I do my checks on pre push because my team has a PR driven workflow. I also have an alias to run-tests && git push origin HEAD since my tests are expensive (minutes to run thousands of tests), and I didn’t want that in a git hook.
This is the way. I do my checks on pre push because my team has a PR driven workflow. I also have an alias to
run-tests && git push origin HEAD
since my tests are expensive (minutes to run thousands of tests), and I didn’t want that in a git hook.