Skip to content

Commit

Permalink
action: add a test action
Browse files Browse the repository at this point in the history
  • Loading branch information
UgniusV committed Jul 5, 2024
1 parent 03da1a5 commit ed7d536
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: List Files on Commit

on: [push, pull_request]

jobs:
list_files:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: List files in the repository
run: ls -la

0 comments on commit ed7d536

Please sign in to comment.