Compare commits
3 Commits
main
...
fix-branch
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d807ce88e0 | ||
|
|
29a18ce3b3 | ||
|
|
c308a33f05 |
@@ -1,10 +1,17 @@
|
||||
name: First CI
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: build using gcc
|
||||
run: gcc -Wall -Werror main.c
|
||||
|
||||
- name: build using gcc
|
||||
run: gcc -Wall -Werror main.c -o program
|
||||
|
||||
- name: Archive production artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: program
|
||||
path: program
|
||||
@@ -2,6 +2,6 @@
|
||||
|
||||
int main()
|
||||
{
|
||||
printf("Halo, Welt!");
|
||||
printf("Halo, World!");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user