Skip to content

Update codeql.yml

Update codeql.yml #7

Workflow file for this run

name: Test exiting on failure
on: [push]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Try to fail
run: exit 1
- name: Print message if we don't fail
run: echo Should not get here