Skip to content

Commit

Permalink
Merge branch 'main' into bg/moist-equations-lucas
Browse files Browse the repository at this point in the history
  • Loading branch information
benegee committed Jul 23, 2024
2 parents 4377c09 + 25592b6 commit 7ecea77
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,31 @@ jobs:
show-versioninfo: true
- uses: julia-actions/cache@v2

- name: Run tests
- name: Run tests without coverage
if: ${{ matrix.os != 'ubuntu-latest' }}
uses: julia-actions/julia-runtest@v1
with:
coverage: false

- name: Run tests with coverage
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: julia-actions/julia-runtest@v1
with:
coverage: true

- name: Process Julia coverage data
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: julia-actions/julia-processcoverage@v1

- name: Upload coverage data (Codecov)
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: codecov/codecov-action@v4
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}

- name: Upload coverage data (Coveralls)
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
-->
[![Docs-dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://trixi-framework.github.io/TrixiAtmo.jl/dev)
[![Slack](https://img.shields.io/badge/chat-slack-e01e5a)](https://join.slack.com/t/trixi-framework/shared_invite/zt-sgkc6ppw-6OXJqZAD5SPjBYqLd8MU~g)
[![Build Status](https://github.com/trixi-framework/TrixiAtmo.jl/workflows/CI/badge.svg)](https://github.com/trixi-framework/TrixiAtmo.jl/actions?query=workflow%3ACI)
[![Build Status](https://github.com/trixi-framework/TrixiAtmo.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/trixi-framework/TrixiAtmo.jl/actions?query=workflow%3ACI)
[![Codecov](https://codecov.io/gh/trixi-framework/TrixiAtmo.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/trixi-framework/TrixiAtmo.jl)
[![Coveralls](https://coveralls.io/repos/github/trixi-framework/TrixiAtmo.jl/badge.svg?branch=main)](https://coveralls.io/github/trixi-framework/TrixiAtmo.jl?branch=main)
[![License: MIT](https://img.shields.io/badge/License-MIT-success.svg)](https://opensource.org/licenses/MIT)
Expand Down

0 comments on commit 7ecea77

Please sign in to comment.