-
Notifications
You must be signed in to change notification settings - Fork 6
35 lines (32 loc) · 1.23 KB
/
apitests.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
name: API tests workflow
on:
pull_request:
branches: [ master,release-* ]
jobs:
build:
name: API tests
runs-on: [ self-hosted, iOS ]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: jdx/mise-action@v2
with:
cache: false
- name: Checkout
uses: actions/checkout@v4
- name: Create test env
env:
ENV_PATH: "kDriveAPITests/Env.swift"
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
USER_ID: ${{ secrets.USER_ID }}
INVITE_USER_ID: ${{ secrets.INVITE_USER_ID }}
INVITE_EMAIL: ${{ secrets.INVITE_EMAIL }}
run: |
touch $ENV_PATH
echo -e "enum Env {\n static let token = \"$ACCESS_TOKEN\"\n\n static let driveId = 420132\n\n static let userId = $USER_ID\n\n static let inviteUserId = $INVITE_USER_ID\n\n static let inviteMail = \"$INVITE_EMAIL\"\n\n static let inviteTeam = 0\n\n static let commonDocumentsId = 3\n}" > $ENV_PATH
- name: Setup
run: tuist install && tuist generate
- name: API tests
run: tuist test kDrive-Workspace --test-targets kDriveAPITests