Skip to content

Commit

Permalink
Merge pull request #53 from ShipMMG/feature/auto_test
Browse files Browse the repository at this point in the history
Add Test.yml
  • Loading branch information
taiga4112 committed Jul 15, 2023
2 parents eae8c49 + 36c8850 commit b09c6df
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run tests

on:
push:
branches:
- main
pull_request:
branches:
- main
- dev

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1']
julia-arch: [x64]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1.9.2
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
annotate: true

0 comments on commit b09c6df

Please sign in to comment.