Skip to content

Revert "add conference badge sample data" #17

Revert "add conference badge sample data"

Revert "add conference badge sample data" #17

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: swift-actions/setup-swift@v1
- name: Get swift version
run: swift --version # Swift 5.8
- uses: actions/checkout@v3
- name: Fix Up Private GitHub URLs
# Add personal access token to all private repo URLs
run: find . -type f \( -name 'Package.swift' -o -name 'Package.resolved' \) -exec sed -i '' "s/https:\/\/github.com\/eu-digital-identity-wallet/https:\/\/${{ secrets.USER_NAME }}:${{ secrets.USER_GITHUB_TOKEN }}@github.com\/eu-digital-identity-wallet/g" {} \;
- name: Build
run: swift build
- name: Run tests
run: swift test