Skip to content
This repository was archived by the owner on Feb 20, 2024. It is now read-only.

Commit acd13c9

Browse files
committed
build: compine test and build to a single step for a speed bump of cicd actions (docker building)
1 parent ecee238 commit acd13c9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,10 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v3
22-
- name: Build 🔧
23-
run: |
24-
make build
25-
- name: Test 🧪
22+
- name: Test & Build 🧪🔧
2623
run: |
2724
make test
25+
make build
2826
- name: Archive the build artifacts 🐪
2927
if: ${{ inputs.wants_artifacts }}
3028
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)