Add View.onPreferenceChange support (#937) #2456
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: Ubuntu | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ubuntu_test: | |
| name: Execute tests on Ubuntu | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| swift_version: ["6.2.4"] | |
| runs-on: ubuntu-22.04 | |
| env: | |
| OPENSWIFTUI_WERROR: 0 # Disable it to avoid enable OAG's werror and hit conflicts | |
| OPENSWIFTUI_OPENATTRIBUTESHIMS_ATTRIBUTEGRAPH: 0 | |
| OPENSWIFTUI_COMPATIBILITY_TEST: 0 | |
| OPENSWIFTUI_SWIFT_LOG: 1 | |
| OPENSWIFTUI_SWIFT_CRYPTO: 1 | |
| OPENSWIFTUI_LINK_TESTING: 1 | |
| container: swift:${{ matrix.swift_version }}-jammy | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Building and running tests in debug mode with coverage | |
| run: | | |
| swift test \ | |
| -c debug \ | |
| --filter OpenSwiftUITests \ | |
| --filter OpenSwiftUICoreTests \ | |
| --enable-code-coverage \ | |
| --build-path .build-test-debug | |
| llvm-cov show \ | |
| -instr-profile=.build-test-debug/debug/codecov/default.profdata \ | |
| .build-test-debug/debug/OpenSwiftUIPackageTests.xctest \ | |
| > coverage.txt | |
| id: debug-test | |
| - uses: codecov/codecov-action@v3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| verbose: true |