Skip to content

Commit

Permalink
Migrate CI to GitHub Actions
Browse files Browse the repository at this point in the history
- Remove travis ci configuration
- Add swiftlint step
  • Loading branch information
fcanas authored Jan 23, 2022
1 parent 919f4d6 commit 2835209
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 10 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Swift

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Lint
run: swiftlint
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 2835209

Please sign in to comment.