Skip to content

Commit

Permalink
Create Tier1.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
PharmCat authored Jun 4, 2021
1 parent 0b1e2ed commit 1c94cb6
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/Tier1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Tier 1
on:
push:
branches:
- master
paths-ignore:
- 'LICENSE.md'
- 'README.md'
- '.github/**'
- 'docs/**'
- 'validation/**'
- 'test/validation**'
- 'change.log'
- '.gitignore'
pull_request:
branches:
- master
paths-ignore:
- 'LICENSE.md'
- 'README.md'
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.5, 1.6]
julia-arch: [x64]
os: [ubuntu-18.04, macos-10.15, windows-2019]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/[email protected]
- uses: julia-actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: julia-actions/[email protected]
if: ${{ startsWith(matrix.os, 'Ubuntu') && startsWith(matrix.julia-version, '1.5') }}

2 comments on commit 1c94cb6

@PharmCat
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/38193

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 1c94cb6e6fc7224ac2b2614f04ec4ebedac4a32e
git push origin v0.1.0

Please sign in to comment.