Skip to content

Commit

Permalink
Refactor shared parts of github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpride committed May 3, 2023
1 parent e129d23 commit f64eab5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,12 @@ on:

jobs:
shared:
uses: ./.github/workflows/shared.yml
uses: ./.github/workflows/shared.yml
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build release
run: dotnet build src/mcpride-markdig-extensions.sln --no-restore --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_call:

jobs:
build:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit f64eab5

Please sign in to comment.