feature: Make OrderedDictionary.Values conform to Differentiable #7
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: Pull Request | |
| on: [pull_request] | |
| jobs: | |
| Lint: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: SwiftFormat | |
| run: swiftformat --lint --strict . --reporter github-actions-log | |
| test-ubuntu-latest: | |
| name: Test Swift ${{ matrix.swift }} Ubuntu Latest | |
| strategy: | |
| matrix: | |
| swift: ["6.0", "6.0.1", "6.0.2"] | |
| runs-on: ubuntu-latest | |
| container: swift:${{ matrix.swift }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Tests | |
| run: swift test -Xswiftc -warnings-as-errors -Xcc -Werror | |