mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-04-23 11:26:54 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
37 lines
954 B
YAML
37 lines
954 B
YAML
name: CI
|
|
on:
|
|
push: {}
|
|
pull_request: {}
|
|
jobs:
|
|
run:
|
|
runs-on: macos-15
|
|
name: Xcode ${{ matrix.xcode }}
|
|
strategy:
|
|
matrix:
|
|
xcode: ["16.0", "16.3"]
|
|
env:
|
|
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Resolve
|
|
run: swift package resolve
|
|
- name: Build
|
|
run: swift build
|
|
- name: Test
|
|
run: set -o pipefail && swift test 2>&1 | xcpretty
|
|
- name: Gen fixtures
|
|
run: scripts/gen-fixtures.sh
|
|
- name: Check fixtures
|
|
run: scripts/diff-fixtures.sh
|
|
- name: Build fixtures
|
|
env:
|
|
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: scripts/build-fixtures.sh
|
|
run-linux:
|
|
runs-on: ubuntu-latest
|
|
name: Linux
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Build and run tests
|
|
run: swift test --enable-test-discovery
|