Bump the all-dependencies group with 6 updates #161
Workflow file for this run
  
    
      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.2.0-noble", "swift:6.2.0-jammy", "swift:6.1.2-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/[email protected] |