* MediaUploadingPreprocessor - Prevent images without any GPS metadata from being changed * Add support for sending images * Add support for sending video, audio and file attachments * Rename MediaPickerPreview to MediaUploadPreview * Move media uploading to the MediaUploadPreviewScreen, add waiting indicators and error handling * Add support for pasting and drag&dropping in media for upload * Adopt new media picker source UI, remove developer flag * Set minimum heights for timeline loadable images * Fix invalid camera picker file names * Fix flakey MediaUploadingPreprocessor image tests, improve gps metadata stripping * UITests: Update existing screenshots and add new step for the room attachment picker * Switch all github action runners to macos-13 * Cleanup enter key and paste message composer handlers
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
name: Unit Tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
branches: [ develop ]
|
|
|
|
pull_request:
|
|
|
|
jobs:
|
|
tests:
|
|
name: Tests
|
|
runs-on: macos-13
|
|
|
|
concurrency:
|
|
# When running on develop, use the sha to allow all runs of this workflow to run concurrently.
|
|
# Otherwise only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
|
group: ${{ github.ref == 'refs/heads/develop' && format('unit-tests-develop-{0}', github.sha) || format('unit-tests-{0}', github.ref) }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
lfs: true
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: vendor/bundle
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gems-
|
|
|
|
- name: Setup environment
|
|
run:
|
|
source ci_scripts/ci_common.sh && setup_github_actions_environment
|
|
|
|
- name: SwiftFormat
|
|
run:
|
|
swiftformat --lint .
|
|
|
|
- name: Run tests
|
|
run: bundle exec fastlane unit_tests
|
|
|
|
- name: Archive artifacts
|
|
uses: actions/upload-artifact@v3
|
|
if: always()
|
|
with:
|
|
name: test-output
|
|
path: fastlane/test_output
|
|
retention-days: 7
|
|
if-no-files-found: ignore
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
flags: unittests
|