Skip to content

Commit

Permalink
Try #14:
Browse files Browse the repository at this point in the history
  • Loading branch information
bors[bot] committed May 7, 2020
2 parents 582bf50 + 788c245 commit 772ca3a
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 34 deletions.
33 changes: 0 additions & 33 deletions .appveyor.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI

on:
push:
branches:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Uncomment this to enable building pull requests.
#- master

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.version == 'nightly' }}
strategy:
matrix:
version:
- '1.1'
- '1'
- 'nightly'
os:
- windows-latest
arch:
- x86
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
2 changes: 1 addition & 1 deletion bors.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
status = [
"continuous-integration/travis-ci/push",
"continuous-integration/appveyor/branch"
"CI / Julia 1%"
]
delete_merged_branches = true
# Uncomment this to use a two hour timeout.
Expand Down

0 comments on commit 772ca3a

Please sign in to comment.