Kissaki@programming.dev to Programming@programming.devEnglish · 3 days agoThe Pain That is GitHub Actions - Feldera Blogwww.feldera.comexternal-linkmessage-square27fedilinkarrow-up137arrow-down110cross-posted to: hackernews
arrow-up127arrow-down1external-linkThe Pain That is GitHub Actions - Feldera Blogwww.feldera.comKissaki@programming.dev to Programming@programming.devEnglish · 3 days agomessage-square27fedilinkcross-posted to: hackernews
minus-squarenormalexit@lemmy.worldlinkfedilinkarrow-up3·3 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.
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.