How to stop Github Actions step when functional tests failed (using Codeception)
问题 I'm new with Github Actions and I try to make some continuous integration with functional tests. I use Codeception and my workflow run perfectly, but when some tests fail the step is written as success. Github don't stop the action and continue to run the nexts steps. Here is my workflow yml file : name: Run codeception tests on: push: branches: [ feature/functional-tests/codeception ] jobs: build: runs-on: ubuntu-latest steps: # —— Setup Github Actions 🐙 —————————————————————————————————————