Skip to content

Commit

Permalink
Fix GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Scuderi committed Aug 25, 2024
1 parent abffa38 commit 1b207ff
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/swift-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
image:
- swift:5.7.3-amazonlinux2
- swift:5.10.1-amazonlinux2
services:
localstack:
image: localstack/localstack
Expand All @@ -33,11 +33,14 @@ jobs:

steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v3
- name: Setup
run: |
yum -y update && yum -y install git make curl
- name: Setup
run: |
yum -y update && yum -y install git make zip curl
- name: Git Clone & Checkout
run: |
git clone https://github.com/$GITHUB_REPOSITORY.git $GITHUB_WORKSPACE/src
echo https://github.com/$GITHUB_REPOSITORY.git $BRANCH_NAME
cd $GITHUB_WORKSPACE/src && git checkout $BRANCH_NAME
- name: Test
run: |
make test
Expand Down

0 comments on commit 1b207ff

Please sign in to comment.