Skip to content

Commit

Permalink
chore: add check_format.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vil02 committed Oct 30, 2023
1 parent 9e912b6 commit 8ac468c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check_format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: check_format

# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
branches:
- main
pull_request:

jobs:
check_format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Init git
run: |
git init
git status
- name: Check code format
uses: julia-actions/julia-format@master
with:
args: -v .

0 comments on commit 8ac468c

Please sign in to comment.