minus-squarenormalexit@lemmy.worldtoProgramming@programming.dev•The Pain That is GitHub Actions - Feldera Bloglinkfedilinkarrow-up2·2 days 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. linkfedilink
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.