chore: Bump version checker to 10.1.2 #5187
Workflow file for this run
This file contains hidden or 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: [ master ] | |
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@v4 | |
- name: Create test env | |
env: | |
ENV_PATH: "MailTests/Env.swift" | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
USER_ID: ${{ secrets.USER_ID }} | |
MAILBOX_ID: ${{ secrets.MAILBOX_ID }} | |
MAILBOX_UUID: ${{ secrets.MAILBOX_UUID }} | |
run: | | |
touch $ENV_PATH | |
echo -e "enum Env {\n static let token = \"$ACCESS_TOKEN\"\n static let userId = $USER_ID\n static let mailboxId = $MAILBOX_ID\n static let mailboxUuid = \"$MAILBOX_UUID\"\n}" > $ENV_PATH | |
- name: Generate | |
run: tuist install && tuist generate | |
- name: Check implicit imports | |
run: tuist inspect implicit-imports | |
- name: Build | |
run: tuist build --clean "Infomaniak Mail" | |
- name: Unit and Integration Tests | |
run: tuist test Mail-Workspace --skip-ui-tests |