Skip to content

Commit

Permalink
Update and rename test.yaml to CI.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
taylormcd authored Nov 29, 2022
1 parent 023f6a3 commit e163c1d
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions .github/workflows/test.yaml → .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,31 @@
name: Run tests

on: [push, pull_request]

name: CI
on:
push:
branches:
- master
tags: '*'
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: MATLAB ${{ matrix.matlab-version }} - Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
matlab-version: ['R2021b']
julia-version: ['1.5']
julia-arch: [x64]
os: [ubuntu-latest]

matlab-version:
- 'R2021b'
julia-version:
- '1.6'
- '1'
os:
- ubuntu-latest
arch:
- x64
steps:
- name: Install csh
run: sudo apt-get install -y csh
Expand Down

0 comments on commit e163c1d

Please sign in to comment.