From 968bbac9bde618f75a7bda7a62c5251d61176033 Mon Sep 17 00:00:00 2001 From: "Alinson S. Xavier" Date: Fri, 9 Apr 2021 07:21:57 -0500 Subject: [PATCH] Set up GitHub Actions --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..4703839 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: Test +on: + push: + pull_request: + schedule: + - cron: '45 10 * * *' +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + matrix: + julia-version: ['1', 'nightly'] + julia-arch: [x64] + os: [ubuntu-latest] + steps: + - uses: actions/checkout@v2 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.julia-version }} + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1