Skip to content

Commit 976f9d3

Browse files
author
Jimmy Byrd
committed
Setup for CI
1 parent fca7c43 commit 976f9d3

File tree

6 files changed

+13
-23
lines changed

6 files changed

+13
-23
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Describe the big picture of your changes here to communicate to the maintainers
44

55
## Types of changes
66

7-
What types of changes does your code introduce to Redis.Streams?
7+
What types of changes does your code introduce to FSharp.Control.Redis.Streams?
88
_Put an `x` in the boxes that apply_
99

1010
- [ ] Bugfix (non-breaking change which fixes an issue)

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ mono:
1010
- weekly # => "latest commits"
1111
os:
1212
- linux
13+
services:
14+
- redis-server
1315

1416
script:
1517
- ./build.sh

Directory.Build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<PropertyGroup>
33
<!-- summary is not migrated from project.json, but you can use the <Description> property for that if needed. -->
44
<PackageTags>f#, fsharp</PackageTags>
5-
<PackageProjectUrl>https://github.com/MyGithubUsername/Redis.Streams</PackageProjectUrl>
6-
<PackageLicenseUrl>https://github.com/MyGithubUsername/Redis.Streams/blob/master/LICENSE.md</PackageLicenseUrl>
5+
<PackageProjectUrl>https://github.com/TheAngryByrd/FSharp.Control.Redis.Streams</PackageProjectUrl>
6+
<PackageLicenseUrl>https://github.com/TheAngryByrd/FSharp.Control.Redis.Streams/blob/master/LICENSE.md</PackageLicenseUrl>
77
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
88
<RepositoryType>git</RepositoryType>
9-
<Authors>MyGithubUsername</Authors>
10-
<RepositoryUrl>https://github.com/MyGithubUsername/Redis.Streams</RepositoryUrl>
9+
<Authors>TheAngryByrd</Authors>
10+
<RepositoryUrl>https://github.com/TheAngryByrd/FSharp.Control.Redis.Streams</RepositoryUrl>
1111
<!-- owners is not supported in MSBuild -->
1212
</PropertyGroup>
1313
</Project>

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
# Redis.Streams
1+
# FSharp.Control.Redis.Streams
22

3-
[Enter useful description for Redis.Streams]
3+
[Enter useful description for FSharp.Control.Redis.Streams]
44

55
---
66

77
## Builds
88

99
MacOS/Linux | Windows
1010
--- | ---
11-
[![Travis Badge](https://travis-ci.org/MyGithubUsername/Redis.Streams.svg?branch=master)](https://travis-ci.org/MyGithubUsername/Redis.Streams) | [![Build status](https://ci.appveyor.com/api/projects/status/github/MyGithubUsername/Redis.Streams?svg=true)](https://ci.appveyor.com/project/MyGithubUsername/Redis.Streams)
12-
[![Build History](https://buildstats.info/travisci/chart/MyGithubUsername/Redis.Streams)](https://travis-ci.org/MyGithubUsername/Redis.Streams/builds) | [![Build History](https://buildstats.info/appveyor/chart/MyGithubUsername/Redis.Streams)](https://ci.appveyor.com/project/MyGithubUsername/Redis.Streams)
11+
[![Travis Badge](https://travis-ci.org/TheAngryByrd/FSharp.Control.Redis.Streams.svg?branch=master)](https://travis-ci.org/TheAngryByrd/FSharp.Control.Redis.Streams) | No Redis 5.0 Support On Windows
12+
[![Build History](https://buildstats.info/travisci/chart/TheAngryByrd/FSharp.Control.Redis.Streams)](https://travis-ci.org/TheAngryByrd/FSharp.Control.Redis.Streams/builds) |
1313

1414

1515
## Nuget
1616

1717
Stable | Prerelease
1818
--- | ---
19-
[![NuGet Badge](https://buildstats.info/nuget/Redis.Streams)](https://www.nuget.org/packages/Redis.Streams/) | [![NuGet Badge](https://buildstats.info/nuget/Redis.Streams?includePreReleases=true)](https://www.nuget.org/packages/Redis.Streams/)
19+
[![NuGet Badge](https://buildstats.info/nuget/FSharp.Control.Redis.Streams)](https://www.nuget.org/packages/FSharp.Control.Redis.Streams/) | [![NuGet Badge](https://buildstats.info/nuget/FSharp.Control.Redis.Streams?includePreReleases=true)](https://www.nuget.org/packages/FSharp.Control.Redis.Streams/)
2020

2121
### Developing
2222

appveyor.yml

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

build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ let toolsDir = __SOURCE_DIRECTORY__ @@ "tools"
4242
let coverageThresholdPercent = 80
4343
let coverageReportDir = __SOURCE_DIRECTORY__ @@ "docs" @@ "coverage"
4444

45-
let gitOwner = "MyGithubUsername"
45+
let gitOwner = "TheAngryByrd"
4646
let gitRepoName = "FSharp.Control.Redis.Streams"
4747

4848
let releaseBranch = "master"

0 commit comments

Comments
 (0)