-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (43 loc) · 1.27 KB
/
ci_workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
### A CI workflow template that runs linting and python testing
### TODO: Modify as needed or as desired.
name: Test tap-linkedin-ads
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
workflow_dispatch:
inputs: {}
jobs:
pytest:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
id: test_pytest
continue-on-error: false
env:
TAP_LINKEDIN_ADS_ACCESS_TOKEN: ${{ secrets.access_token }}
TAP_LINKEDIN_ADS_ACCOUNTS: ${{ secrets.accounts }}
TAP_LINKEDIN_ADS_OWNER: ${{ secrets.owner }}
TAP_LINKEDIN_ADS_CAMPAIGN: ${{ secrets.campaign }}
TAP_LINKEDIN_ADS_CAMPAIGN_GROUP: ${{ secrets.campaign_group }}
TAP_LINKEDIN_ADS_CREATIVE: ${{ secrets.creative }}
run: |
poetry run pytest --capture=no