Use correct safe collection concurrency primatives. (#87) #146
  
    
      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: build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| BuildAndTest: | |
| name: Image ${{ matrix.image }} | |
| strategy: | |
| matrix: | |
| image: ["swift:6.1.2-noble", "swift:6.1.2-jammy", "swift:6.0.3-noble"] | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ${{ matrix.image }} | |
| steps: | |
| - name: Install libssl-dev | |
| run: apt-get update && apt-get install -y libssl-dev | |
| - uses: actions/checkout@v5 | |
| - name: Build | |
| run: swift build -c release -Xswiftc -strict-concurrency=complete | |
| - name: Run tests | |
| run: swift test | |
| SwiftLint: | |
| name: SwiftLint version 3.2.1 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: GitHub Action for SwiftLint | |
| uses: norio-nomura/action-swiftlint@3.2.1 |