Skip to content

Commit

Permalink
Merge pull request #430 from moka-rs/codecov/v0.12
Browse files Browse the repository at this point in the history
CI: codecov.io - Do not skip duplicate GitHub Actions
  • Loading branch information
tatsuya6502 committed Jun 8, 2024
2 parents a5bc170 + 336bf31 commit ac542ff
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/Codecov.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,15 @@
name: Codecov

on:
push:
paths-ignore:
- '.devcontainer/**'
- '.gitpod.yml'
- '.vscode/**'
pull_request:
paths-ignore:
- '.devcontainer/**'
- '.gitpod.yml'
- '.vscode/**'

jobs:
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
# https://github.com/marketplace/actions/skip-duplicate-actions
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content'
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'

test:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
strategy:
# Continue running other jobs in the matrix even if one fails.
fail-fast: false

steps:
- name: Checkout Moka
Expand Down

0 comments on commit ac542ff

Please sign in to comment.