From 1c38391a1caad86a88383081cadbfd81e8994f21 Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Fri, 26 Feb 2021 22:47:56 +0100 Subject: [PATCH] update --- .github/workflows/ci.yaml | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8df5fcb..905ed9e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,40 +9,6 @@ on: jobs: - one: - runs-on: ubuntu-latest - steps: - - name: Dump GitHub context - env: - GITHUB_CONTEXT: ${{ toJSON(github) }} - run: echo "$GITHUB_CONTEXT" - - name: Dump job context - env: - JOB_CONTEXT: ${{ toJSON(job) }} - run: echo "$JOB_CONTEXT" - - name: Dump steps context - env: - STEPS_CONTEXT: ${{ toJSON(steps) }} - run: echo "$STEPS_CONTEXT" - - name: Dump runner context - env: - RUNNER_CONTEXT: ${{ toJSON(runner) }} - run: echo "$RUNNER_CONTEXT" - - name: Dump strategy context - env: - STRATEGY_CONTEXT: ${{ toJSON(strategy) }} - run: echo "$STRATEGY_CONTEXT" - - name: Dump matrix context - env: - MATRIX_CONTEXT: ${{ toJSON(matrix) }} - run: echo "$MATRIX_CONTEXT" - - fake_job: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - run: echo DONE - test_lint: runs-on: ubuntu-latest if: ${{ !github.event.created && github.repository != 'garronej/ts_ci' }}