Skip to content

Add deny list processing into the validator #282

Add deny list processing into the validator

Add deny list processing into the validator #282

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: ubuntu-latest
container:
image: swiftlang/swift@sha256:f212429011a4c3592ffaa660fd78b5bc149e9df7920da02dfc0e7a761582fa10 # swiftlang/swift:nightly-5.9-focal 2023-08-16
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