Skip to content

Commit

Permalink
Merge pull request #13 from SciML/at/use-reusable-workflows
Browse files Browse the repository at this point in the history
ci: standardise workflows using SciML's reusable workflows
  • Loading branch information
thazhemadam authored May 3, 2024
2 parents 5879b43 + 01d19ca commit acaba3f
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 68 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/CI.yml

This file was deleted.

32 changes: 10 additions & 22 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,20 @@
name: Documentation
name: "Documentation"

on:
push:
branches:
- main
- 'release-'
tags: '*'
pull_request:
schedule:
- cron: '59 12 * * 2'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: '1'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
run: julia --project=docs/ --code-coverage=user docs/make.jl
- uses: julia-actions/julia-processcoverage@v1
with:
directories: src
- uses: codecov/codecov-action@v4
with:
files: lcov.info
build-and-deploy-docs:
name: "Documentation"
uses: "SciML/.github/.github/workflows/documentation.yml@v1"
secrets: "inherit"
34 changes: 34 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "Tests"

on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
schedule:
- cron: '59 12 * * 2'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }}

jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
os: "${{ matrix.os }}"
secrets: "inherit"

0 comments on commit acaba3f

Please sign in to comment.