Skip to content

Commit

Permalink
ci(github): name checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
dbohdan committed May 9, 2024
1 parent 58d3708 commit 969da8e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get install -y tcl tcllib libsqlite3-tcl
sudo apt-get install -y tcl tcllib libsqlite3-tcl
- name: Run tests
run: |
make test
Expand All @@ -16,7 +17,8 @@ jobs:
steps:
- name: 'Disable `autocrlf` in Git'
run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
- name: Download dependencies
run: |
Invoke-WebRequest http://kitcreator.rkeene.org/kits/ae78c6ebb1cca64104a326db1be0110e8b2457c9/tclkit.exe -OutFile tclkit.exe
Expand Down

0 comments on commit 969da8e

Please sign in to comment.