Add SwiftTrie package
This commit is contained in:
50
.github/workflows/docs.yml
vendored
Normal file
50
.github/workflows/docs.yml
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
name: Docs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Allow one concurrent deployment
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
docs:
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Pages
|
||||
uses: actions/configure-pages@v3
|
||||
- name: Generate Docs
|
||||
uses: fwcd/swift-docc-action@v1
|
||||
with:
|
||||
target: SwiftTrie
|
||||
output: ./docs
|
||||
transform-for-static-hosting: 'true'
|
||||
disable-indexing: 'true'
|
||||
hosting-base-path: swift-trie
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v1
|
||||
with:
|
||||
path: ./docs
|
||||
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: docs
|
||||
|
||||
steps:
|
||||
- name: Deploy Docs
|
||||
uses: actions/deploy-pages@v1
|
||||
16
.github/workflows/swiftlint.yml
vendored
Normal file
16
.github/workflows/swiftlint.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
name: SwiftLint
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ '**' ]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
SwiftLint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: GitHub Action for SwiftLint
|
||||
uses: norio-nomura/action-swiftlint@3.2.1
|
||||
with:
|
||||
args: --strict
|
||||
27
.github/workflows/unit.yml
vendored
Normal file
27
.github/workflows/unit.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Unit Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ '**' ]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-and-test:
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
matrix:
|
||||
swift: ['5.8', '5.9', '5.10']
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Swift
|
||||
uses: SwiftyLab/setup-swift@latest
|
||||
with:
|
||||
swift-version: ${{ matrix.swift }}
|
||||
|
||||
- name: Build and Test
|
||||
run: |
|
||||
swift build
|
||||
swift test
|
||||
Reference in New Issue
Block a user