Skip to content

Commit

Permalink
Merge pull request #6 from WhiffleFish/codecov
Browse files Browse the repository at this point in the history
codecov
  • Loading branch information
WhiffleFish authored Mar 12, 2022
2 parents 45e2fd6 + aa242bd commit 202a012
Showing 1 changed file with 26 additions and 11 deletions.
37 changes: 26 additions & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
name: CI

on: [push, pull_request]

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

name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1.7'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v1
- uses: julia-actions/setup-julia@latest
with:
version: '1'
arch: x64
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-uploadcodecov@latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 202a012

Please sign in to comment.