Skip to content

Commit

Permalink
Remove redundant build step from workflow
Browse files Browse the repository at this point in the history
Eliminated the step that builds the example_app binary in the CI workflow. Building the binary was unnecessary as the workflow already covers dependency installation, code formatting check, and running tests. Simplifies the workflow and reduces build times.
  • Loading branch information
eliasjpr committed Aug 12, 2024
1 parent b8632fe commit 51f5ee3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/crystal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ jobs:
- uses: actions/checkout@v2
- name: Install dependencies
run: shards install
- name: Build binary to test
run: shards build example_app
- name: Check code styl2e
run: crystal tool format --check
- name: Run tests
Expand Down

0 comments on commit 51f5ee3

Please sign in to comment.