Skip to content

Commit

Permalink
Merge pull request #14 from akamai/travis-to-gh
Browse files Browse the repository at this point in the history
Move from travis to github workflows
  • Loading branch information
bluesmoon committed Sep 11, 2023
2 parents 1320b35 + 51a02a6 commit b4d1de1
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 27 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
tags: '*'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.9'
- '1.6'
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- run: julia --color=yes --project=. -e 'if VERSION < v"1.9"; using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); end'
working-directory: ${{ github.workspace }}
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

0 comments on commit b4d1de1

Please sign in to comment.