Skip to content

Commit

Permalink
Add missing data in streams (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentS authored Oct 19, 2022
1 parent 5e7a0b6 commit aea50e8
Show file tree
Hide file tree
Showing 18 changed files with 1,305 additions and 1,226 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@

name: Test tap-gitlab

on: [push]
on:
# Run on all pull requests and on pushes to master.
pull_request:
push:
branches:
- main

jobs:
linting:
Expand All @@ -15,15 +20,15 @@ jobs:
python-version: [3.9]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.13
version: 1.2.2
- name: Install dependencies
run: |
poetry install
Expand All @@ -40,18 +45,18 @@ jobs:
TAP_GITLAB_PROJECTS: meltano/demo-project
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.11
version: 1.2.2
- name: Install dependencies
run: |
poetry install
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Built with the [Meltano SDK](https://sdk.meltano.com) for Singer Taps and Target
- This repository's default branch (`legacy-stable`) is kept for compatibility reasons but is no longer under active development.
- New development is being performed against the `main` branch, which is based on a port to the Meltano SDK in Pull Request #65.
- For a stable experience, users of this tap should begin pinning their installations to a specific [release](https://github.com/MeltanoLabs/tap-gitlab/releases) instead of branch references. More instructions are provided within the `README.md` of the `main` branch.
- Release 1.2.0 introduces **breaking changes** in the state management of the tap: streams now use numeric ids to track projects and groups to better handle changes in names. If you have bookmarks from a previous version, they will become invalid, meaning the tap will restart streams "from the beginning" the first time you run on this release.

## Capabilities

Expand Down
Loading

0 comments on commit aea50e8

Please sign in to comment.