Skip to content

Commit 39fe82b

Browse files
authored
use github actions for build instead of travis (#14)
1 parent 9fd1216 commit 39fe82b

File tree

3 files changed

+27
-41
lines changed

3 files changed

+27
-41
lines changed

.github/workflows/ci.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: ci
2+
on:
3+
- push
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: norio-nomura/action-swiftlint@3.2.1
11+
macos-test:
12+
strategy:
13+
matrix:
14+
swift-version:
15+
- "5.5"
16+
- "5.4"
17+
- "5.3"
18+
runs-on: macos-latest
19+
steps:
20+
- uses: actions/checkout@v2
21+
- uses: fwal/setup-swift@v1
22+
with:
23+
swift-version: ${{ matrix.swift-version }}
24+
- run: swift test

.travis.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# AccelerateArray
22

3-
[![Swift Version](https://img.shields.io/badge/swift-5.3-blue.svg)](https://swift.org)
4-
![Platform](https://img.shields.io/badge/platform-osx--64-lightgray.svg)
5-
[![Build Travis-CI Status](https://travis-ci.org/dastrobu/AccelerateArray.svg?branch=master)](https://travis-ci.org/dastrobu/AccelerateArray)
3+
[![Swift Version](https://img.shields.io/badge/swift-5.5-blue.svg)](https://swift.org)
4+
![Platform](https://img.shields.io/badge/platform-macOS-lightgray.svg)
5+
![Build](https://github.com/dastrobu/AccelerateArray/actions/workflows/ci.yaml/badge.svg)
66
[![documentation](https://github.com/dastrobu/AccelerateArray/raw/master/docs/badge.svg?sanitize=true)](https://dastrobu.github.io/AccelerateArray/)
77

88
Swift Array Extensions for the Apple Accelerate Framework.

0 commit comments

Comments
 (0)