Skip to content

Bump actions/checkout from 4 to 5 #8

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #8

Workflow file for this run

name: CI Exercises
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
run-exercises-tests-ubuntu:
name: Run exercise tests for swift ${{ matrix.swift }} on Ubuntu
runs-on: ubuntu-24.04
strategy:
matrix:
swift: ["6.0", "6.1", "6.2"]
container:
image: swift:${{ matrix.swift }}
env:
RUNALL: "true"
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Run tests
run: swift test
run-exercises-tests-macos:
name: Run exercise tests on macOS ${{ matrix.macOS }} with Xcode ${{ matrix.xcode }}
runs-on: macos-${{ matrix.macOS }}
strategy:
matrix:
include:
- macOS: '26'
xcode: '26.0'
env:
RUNALL: "true"
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Run tests
run: swift test