We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abffa38 commit 1b207ffCopy full SHA for 1b207ff
.github/workflows/swift-test.yml
@@ -18,7 +18,7 @@ jobs:
18
strategy:
19
matrix:
20
image:
21
- - swift:5.7.3-amazonlinux2
+ - swift:5.10.1-amazonlinux2
22
services:
23
localstack:
24
image: localstack/localstack
@@ -33,11 +33,14 @@ jobs:
33
34
steps:
35
# Checkout the repository to the GitHub Actions runner
36
- - name: Checkout
37
- uses: actions/checkout@v3
38
- - name: Setup
39
- run: |
40
- 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
41
+ git clone https://github.com/$GITHUB_REPOSITORY.git $GITHUB_WORKSPACE/src
42
+ echo https://github.com/$GITHUB_REPOSITORY.git $BRANCH_NAME
43
+ cd $GITHUB_WORKSPACE/src && git checkout $BRANCH_NAME
44
- name: Test
45
run: |
46
make test
0 commit comments