Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a github action #8

Merged
merged 15 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# This workflow will build a Swift project on macOS and Linux
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: swift-openapi-lambda-build

on:
push:
branches: ["main"]
pull_request:
types: [opened, reopened, synchronize]

jobs:
soundness:
name: Soundness
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
with:
# do not use SwiftLang's license header check because the copyright for this project is Amazon.com + contributors
license_header_check_enabled: false
license_header_check_project_name: "Swift OpenAPI Lambda"
shell_check_enabled: false
python_lint_check_enabled: false
api_breakage_check_container_image: "swift:6.0-noble"
docs_check_container_image: "swift:6.0-noble"
format_check_container_image: "swiftlang/swift:nightly-6.0-jammy"

license:
name: License headers check
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Mark the workspace as safe
# https://github.com/actions/checkout/issues/766
run: git config --global --add safe.directory ${GITHUB_WORKSPACE}
- name: License headers check
env:
PROJECT_NAME: "Swift OpenAPI Lambda"
run: |
./scripts/check-license-headers.sh

unit-tests:
name: Unit tests
uses: apple/swift-nio/.github/workflows/unit_tests.yml@main
with:
linux_5_9_enabled: false
linux_5_10_enabled: true
linux_nightly_6_0_arguments_override: "--explicit-target-dependency-import-check error"
linux_nightly_main_arguments_override: "--explicit-target-dependency-import-check error"

swift-6-language-mode:
name: Swift 6 Language Mode
uses: apple/swift-nio/.github/workflows/swift_6_language_mode.yml@main
36 changes: 36 additions & 0 deletions .licenseignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.gitignore
.licenseignore
.swiftformatignore
.spi.yml
.swift-format
.github/*
*.md
**/*.md
CONTRIBUTORS.txt
LICENSE.txt
NOTICE.txt
Package.swift
Package@swift-*.swift
Package.resolved
**/*.docc/*
**/.gitignore
**/Package.swift
**/Package.resolved
**/docker-compose*.yaml
**/docker/*
**/.dockerignore
**/Dockerfile
**/Makefile
**/*.html
**/*-template.yml
**/*.xcworkspace/*
**/*.xcodeproj/*
**/*.xcassets/*
**/*.appiconset/*
**/ResourcePackaging/hello.txt
.mailmap
.swiftformat
*.yaml
*.yml
*.json
*.gif
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
[![Build & Test on GitHub](https://github.com/swift-server/swift-openapi-lambda/actions/workflows/pull_request.yaml/badge.svg)](https://github.com/swift-server/swift-openapi-lambda/actions/workflows//pull_request.yaml)


![language](https://img.shields.io/badge/swift-5.9-blue)
![language](https://img.shields.io/badge/swift-5.10-blue)
![language](https://img.shields.io/badge/swift-6.0-blue)
![platform](https://img.shields.io/badge/platform-macOS-green)
![platform](https://img.shields.io/badge/platform-Linux-orange)
[![license](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
Expand Down
26 changes: 0 additions & 26 deletions docker/Dockerfile

This file was deleted.

18 changes: 0 additions & 18 deletions docker/docker-compose.2204.510.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions docker/docker-compose.2204.59.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions docker/docker-compose.2204.590.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions docker/docker-compose.2204.main.yaml

This file was deleted.

47 changes: 0 additions & 47 deletions docker/docker-compose.yaml

This file was deleted.

53 changes: 0 additions & 53 deletions scripts/check-for-broken-symlinks.sh

This file was deleted.

55 changes: 0 additions & 55 deletions scripts/check-for-docc-warnings.sh

This file was deleted.

Loading