File tree Expand file tree Collapse file tree 3 files changed +51
-19
lines changed
Expand file tree Collapse file tree 3 files changed +51
-19
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ pull_request :
4+ push :
5+ branches :
6+ - master
7+ tags : ' *'
8+ jobs :
9+ test :
10+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
11+ runs-on : ${{ matrix.os }}
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ version :
16+ - ' 1.0'
17+ - ' 1'
18+ - ' nightly'
19+ os :
20+ - ubuntu-latest
21+ - macOS-latest
22+ - windows-latest
23+ arch :
24+ - x64
25+ - x86
26+ exclude :
27+ - os : macOS-latest
28+ arch : x86
29+ steps :
30+ - uses : actions/checkout@v2
31+ - uses : julia-actions/setup-julia@v1
32+ with :
33+ version : ${{ matrix.version }}
34+ arch : ${{ matrix.arch }}
35+ - uses : actions/cache@v1
36+ env :
37+ cache-name : cache-artifacts
38+ with :
39+ path : ~/.julia/artifacts
40+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
41+ restore-keys : |
42+ ${{ runner.os }}-test-${{ env.cache-name }}-
43+ ${{ runner.os }}-test-
44+ ${{ runner.os }}-
45+ - uses : julia-actions/julia-buildpkg@v1
46+ - uses : julia-actions/julia-runtest@v1
47+ - uses : julia-actions/julia-processcoverage@v1
48+ - uses : codecov/codecov-action@v1
49+ with :
50+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Sorting Algorithms
22
3- [ ![ SortingAlgorithms] ( http://pkg.julialang.org/badges/SortingAlgorithms_0.4.svg )] ( http://pkg.julialang.org/?pkg=SortingAlgorithms )
4- [ ![ SortingAlgorithms] ( http://pkg.julialang.org/badges/SortingAlgorithms_0.5.svg )] ( http://pkg.julialang.org/?pkg=SortingAlgorithms )
5- [ ![ SortingAlgorithms] ( http://pkg.julialang.org/badges/SortingAlgorithms_0.6.svg )] ( http://pkg.julialang.org/?pkg=SortingAlgorithms )
6- [ ![ Build Status] ( https://travis-ci.org/JuliaLang/SortingAlgorithms.jl.svg?branch=master )] ( https://travis-ci.org/JuliaLang/SortingAlgorithms.jl )
3+ [ ![ Build status] ( https://github.com/JuliaLang/SortingAlgorithms.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaLang/SortingAlgorithms.jl/actions?query=workflow%3ACI+branch%3Amaster )
74[ ![ Coverage Status] ( https://coveralls.io/repos/JuliaLang/SortingAlgorithms.jl/badge.svg )] ( https://coveralls.io/r/JuliaLang/SortingAlgorithms.jl )
85
96The ` SortingAlgorithms ` package provides three sorting algorithms that can be used with Julia's [ standard sorting API] ( https://docs.julialang.org/en/stable/stdlib/sort/ ) :
You can’t perform that action at this time.
0 commit comments