Skip to content

Commit

Permalink
Minor GitHub actions syntax changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sschmid committed Mar 14, 2023
1 parent 77c7a13 commit 49c922f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build

on: [ workflow_call, workflow_dispatch ]
on: [workflow_call, workflow_dispatch]

jobs:
build:
Expand All @@ -9,7 +9,7 @@ jobs:
- name: "Checkout"
uses: actions/checkout@v3
with:
submodules: 'recursive'
submodules: recursive

- name: "Setup dotnet"
uses: actions/setup-dotnet@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
build:
Expand Down

0 comments on commit 49c922f

Please sign in to comment.