feat(Drive): Method isFreePack return true when pack is myKSuite #2325
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI workflow | |
on: | |
pull_request: | |
branches: '*' | |
jobs: | |
build: | |
name: Build and Test project | |
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@v2 | |
- name: Create test env | |
env: | |
ENV_PATH: "kDriveTestShared/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: Build | |
run: tuist install && tuist generate && tuist build --clean kDrive | |
- name: Test Local | |
run: tuist generate && tuist test kDriveTests | |
- name: Test API | |
run: tuist generate && tuist test kDriveAPITests --test-targets kDriveAPITests/DriveApiTests |