Skip to content

Commit

Permalink
Update CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
vberezhnev committed Oct 29, 2024
1 parent f3992e1 commit f7ebf6f
Showing 1 changed file with 16 additions and 19 deletions.
35 changes: 16 additions & 19 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,22 @@ on:
branches: [ main ]
workflow_dispatch:
jobs:
format_code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Run formatting in core
working-directory: ./core
run: |
cargo fmt
- name: Run formatting in service
working-directory: ./service
run: |
cargo fmt
- name: Run formatting in psql-connector
working-directory: ./psql-connector
run: |
cargo fmt
format_code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run formatting in core
working-directory: ./core
run: |
cargo fmt
- name: Run formatting in service
working-directory: ./service
run: |
cargo fmt
- name: Run formatting in psql-connector
working-directory: ./psql-connector
run: |
cargo fmt
test_core:
runs-on: ubuntu-latest
defaults:
Expand Down

0 comments on commit f7ebf6f

Please sign in to comment.