Skip to content

Use correct safe collection concurrency primatives. #144

Use correct safe collection concurrency primatives.

Use correct safe collection concurrency primatives. #144

Workflow file for this run

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/[email protected]