Skip to content

Commit

Permalink
Merge branch 'main' into ENGA-932-export-method-pull-date-param
Browse files Browse the repository at this point in the history
  • Loading branch information
DevDaveFrame committed Nov 28, 2023
2 parents bd11500 + 0c3f146 commit 244c096
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,9 @@
name: Distribute new release

on:
pull_request:
types: [closed]
branches:
- main
- 'v[0-9]+.[0-9]+.[0-9]+'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
release:
types: [created]


permissions:
contents: read
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/test_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run Tests

on:
pull_request:
branches: [ main ]
push:
branches: [ !main ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v3
with:
python-version: 3.11

- run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pytest -n auto --cov=bigquery_exporter --cov-report=xml

0 comments on commit 244c096

Please sign in to comment.