@@ -14,11 +14,6 @@ Problems it can help with:
1414
1515## Usage
1616
17- ### Get Token
18-
19- To use this GitHub Action, you need to get a username and token from
20- [ data-catering] ( https://data.catering/latest/get-started/quick-start/#get-token ) .
21-
2217### CLI
2318
24191 . Install via ` npm install -g insta-integration `
@@ -47,8 +42,7 @@ To use this GitHub Action, you need to get a username and token from
4742 - name : Run integration tests
4843 uses : data-catering/insta-integration@v3
4944 with :
50- data_caterer_user : ${{ secrets.DATA_CATERER_USER }}
51- data_caterer_token : ${{ secrets.DATA_CATERER_TOKEN }}
45+ data_caterer_version : 0.16.1
5246 ` ` `
5347
54481. Create YAML file ` insta-integration.yaml` to define your integration tests
@@ -129,7 +123,7 @@ The following data sources are available to generate/validate data.
129123<summary>Click here</summary>
130124
131125| Data Source Type | Data Source | Support |
132- | ---------------- |------------------------------------ | ------- |
126+ | ---------------- | ---------------------------------- | ------- |
133127| Cloud Storage | AWS S3 | ✅ |
134128| Cloud Storage | Azure Blob Storage | ✅ |
135129| Cloud Storage | GCP Cloud Storage | ✅ |
@@ -267,14 +261,12 @@ run:
267261Optional configurations to alter the files and folders used by the GitHub Action
268262can be found below.
269263
270- | Name | Description | Default |
271- | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
272- | configuration_file | File path to configuration file | `insta-integration.yaml` |
273- | insta_infra_folder | Folder path to insta-infra ([this repository](https://github.com/data-catering/insta-infra)) | `${HOME}/.insta-integration/insta-infra` |
274- | base_folder | Folder path to use for execution files | `${HOME}/.insta-integration` |
275- | data_caterer_version | Version of data-caterer Docker image | `0.15.2` |
276- | data_caterer_user | User for data-caterer. If you don't have one yet, [create one here](https://data.catering/latest/get-started/quick-start/#get-token) | <empty> |
277- | data_caterer_token | Token for data-caterer. If you don't have one yet, [create one here](https://data.catering/latest/get-started/quick-start/#get-token) | <empty> |
264+ | Name | Description | Default |
265+ | -------------------- | -------------------------------------------------------------------------------------------- | ---------------------------------------- |
266+ | configuration_file | File path to configuration file | `insta-integration.yaml` |
267+ | insta_infra_folder | Folder path to insta-infra ([this repository](https://github.com/data-catering/insta-infra)) | `${HOME}/.insta-integration/insta-infra` |
268+ | base_folder | Folder path to use for execution files | `${HOME}/.insta-integration` |
269+ | data_caterer_version | Version of data-caterer Docker image | `0.16.1` |
278270
279271To use these configurations, alter your
280272` .github/workflows/integration-test.yaml` .
@@ -296,9 +288,7 @@ jobs:
296288 configuration_file: my/custom/folder/insta-integration.yaml
297289 insta_infra_folder: insta-infra/folder
298290 base_folder: execution/folder
299- data_caterer_version: 0.15.2
300- data_caterer_user: ${{ secrets.DATA_CATERER_USER }}
301- data_caterer_token: ${{ secrets.DATA_CATERER_TOKEN }}
291+ data_caterer_version: 0.16.1
302292` ` `
303293
304294# ### Output
@@ -352,7 +342,8 @@ ajv compile --spec=draft2019 -s schema/insta-integration-config-latest.json
352342
353343# ### Validate YAML file
354344
355- You can run `npm run validate-yaml` and it will validate all the YAML files under the `examples` directory.
345+ You can run `npm run validate-yaml` and it will validate all the YAML files
346+ under the `examples` directory.
356347
357348Otherwise, if you have a different pathway, validate via `ajv` :
358349
0 commit comments