Skip to content

Instantly share code, notes, and snippets.

@UmutSERIFLER
Last active February 20, 2023 19:29
Show Gist options
  • Save UmutSERIFLER/8bd0626e78d2cc4c4c61fb2a9fb6ad7a to your computer and use it in GitHub Desktop.
Save UmutSERIFLER/8bd0626e78d2cc4c4c61fb2a9fb6ad7a to your computer and use it in GitHub Desktop.
simple_workflow_example
name: Swift
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build
- name: Run tests
run: swift test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment