Skip to content

Commit

Permalink
More descriptive Github Actions names
Browse files Browse the repository at this point in the history
  • Loading branch information
protik09 committed Apr 8, 2024
1 parent 94fd7ef commit 1a34b9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-github-actions-linux.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test Github Actions
name: Test Github Actions Linux

on:
push:
Expand All @@ -10,15 +10,15 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@main

- name: Install dependencies
run: |
sudo apt update
sudo apt install -y cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@main
with:
python-version: '3.x'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-github-actions-windows.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test Github Actions
name: Test Github Actions Windows

on:
push:
Expand All @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@main

- name: Install dependencies
run: |
Expand All @@ -20,7 +20,7 @@ jobs:
pico-setup-windows-x64-standalone.exe -y
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@main
with:
python-version: '3.x'

Expand Down

0 comments on commit 1a34b9f

Please sign in to comment.