Skip to content

Drop setup-swift (for Linux, which is the prod platform) #262

Drop setup-swift (for Linux, which is the prod platform)

Drop setup-swift (for Linux, which is the prod platform) #262

Workflow file for this run

# Copyright Dave Verwer, Sven A. Schmidt, and other contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: CI
on:
workflow_dispatch:
push:
# branches: [ main ]
pull_request:
branches: [ main ]
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test-validator-Linux:
runs-on: swift:5.8.1-focal
steps:
- name: Get swift version
run: swift --version
- name: Checkout
uses: actions/checkout@v3
- name: Build validator
run: |
swift build
- name: Check redirects
run: ./check-redirects.sh
- name: Check dependencies
run: ./check-dependencies.sh
test-validator-macOS:
strategy:
matrix:
os: [macos-latest]
swift: ["5.8"]
runs-on: macos-latest
steps:
- uses: swift-actions/setup-swift@v1
with:
swift-version: ${{ matrix.swift }}
- name: Get swift version
run: swift --version
- name: Checkout
uses: actions/checkout@v3
- name: Build validator
run: |
swift build
- name: Check redirects
run: ./check-redirects.sh
- name: Check dependencies
run: ./check-dependencies.sh