Skip to content

added 6.0 langauge mode and release versions in CI (#34) #90

added 6.0 langauge mode and release versions in CI (#34)

added 6.0 langauge mode and release versions in CI (#34) #90

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- "**.swift"
- "**.yml"
pull_request:
branches: [main]
workflow_dispatch:
jobs:
linux:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
image: ["swift:5.10", "swift:6.0"]
container:
image: ${{ matrix.image }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build --build-tests
- name: Run Tests
run: swift test