Skip to content

Commit

Permalink
update CI a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
exaexa committed Jun 8, 2024
1 parent c047611 commit a07cdac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 322 deletions.
23 changes: 8 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: CI

on:
push:
branches:
- master
- develop
pull_request:

jobs:
test:
Expand All @@ -13,8 +14,8 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6' # Oldest supported version for COBREXA.jl
- '1' # This is always the latest stable release in the 1.X series
- '1.6' # LTS
#- 'nightly'
os:
- ubuntu-latest
Expand All @@ -23,28 +24,20 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- run: |
git config --global user.name Tester
git config --global user.email [email protected]
- uses: julia-actions/julia-runtest@latest
continue-on-error: ${{ matrix.version == 'nightly' }}
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
307 changes: 0 additions & 307 deletions .gitlab-ci.yml

This file was deleted.

0 comments on commit a07cdac

Please sign in to comment.