Skip to content

Commit

Permalink
ci: Only run tests when relevant code changes (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Aug 26, 2024
1 parent cdcbe83 commit b0ae09e
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
name: Test target-snowflake

on: [push]
on:
push:
branches: [main]
paths:
- .github/workflows/test.yml
- target_snowflake/**
- tests/**
- poetry.lock
- pyproject.toml
- tox.ini
pull_request:
branches: [main]
paths:
- .github/workflows/test.yml
- target_snowflake/**
- tests/**
- poetry.lock
- pyproject.toml
- tox.ini

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down

0 comments on commit b0ae09e

Please sign in to comment.