fix(ci): Use single quotes instead of double quotes

This commit is contained in:
TwiN 2023-02-09 21:25:06 -05:00
parent 45fe7beb6d
commit 542da61215

View File

@ -23,8 +23,8 @@ jobs:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: 1.19 go-version: 1.19
repository: ${{ github.event.inputs.repository || "TwiN/gatus" }} repository: "${{ github.event.inputs.repository || 'TwiN/gatus' }}"
ref: ${{ github.event.inputs.ref || "master" }} ref: "${{ github.event.inputs.ref || 'master' }}"
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Benchmark - name: Benchmark
run: go test -bench=. ./storage/store run: go test -bench=. ./storage/store