Skip to content

Commit

Permalink
Print clang and gcc versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MyNameIsTrez committed Sep 13, 2024
1 parent 215bf2c commit 3646e8c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Print clang version
run: clang --version

- name: Build
run: clang foo.c -o foo -Wfatal-errors

Expand All @@ -145,6 +148,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Print gcc version
run: gcc --version

- name: Build
run: gcc foo.c -o foo -Wfatal-errors

Expand Down

0 comments on commit 3646e8c

Please sign in to comment.