Skip to content

Commit

Permalink
separate nightly ci (#15)
Browse files Browse the repository at this point in the history
* split out nightly ci

* update badge

* fix
  • Loading branch information
ericphanson committed Nov 19, 2023
1 parent d4625b7 commit 5aaf9a0
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 2 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI (nightly)
on:
push:
branches:
- main
tags: ['*']
pull_request:
workflow_dispatch:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
- x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
files: lcov.info
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
version:
- '1.6'
- '1'
- 'nightly'
os:
- ubuntu-latest
arch:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# UnbalancedOptimalTransport

[![Build Status](https://github.com/ericphanson/UnbalancedOptimalTransport.jl/workflows/CI/badge.svg)](https://github.com/ericphanson/UnbalancedOptimalTransport.jl/actions)
[![CI](https://github.com/ericphanson/UnbalancedOptimalTransport.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/ericphanson/UnbalancedOptimalTransport.jl/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/ericphanson/UnbalancedOptimalTransport.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/ericphanson/UnbalancedOptimalTransport.jl)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://ericphanson.github.io/UnbalancedOptimalTransport.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://ericphanson.github.io/UnbalancedOptimalTransport.jl/dev)
Expand Down

0 comments on commit 5aaf9a0

Please sign in to comment.