Skip to content

Commit

Permalink
Merge pull request #28 from JuliaPOMDP/ci_update
Browse files Browse the repository at this point in the history
CI Update
  • Loading branch information
zsunberg committed Dec 16, 2023
2 parents fcbff5c + e175405 commit bb529b9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 60 deletions.
1 change: 0 additions & 1 deletion .codecov.yml

This file was deleted.

37 changes: 25 additions & 12 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,35 @@
name: CI

on: [push, pull_request]

on:
push:
branches:
- master
tags: '*'
pull_request:
jobs:
test:
runs-on: ubuntu-latest

name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- "1"
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1'
arch: x64
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@v1
- uses: codecov/codecov-action@v3
with:
file: ./lcov.info
flags: unittests
name: codecov-umbrella
files: lcov.info
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ Manifest.toml
*.jl.cov
*.jl.*.cov
*.jl.mem
.vscode
47 changes: 0 additions & 47 deletions appveyor.yml

This file was deleted.

0 comments on commit bb529b9

Please sign in to comment.