Skip to content

test for cURL command #10

test for cURL command

test for cURL command #10

Workflow file for this run

name: lint-test
on: [push]
permissions:
contents: read
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Put fixture in place
run: cp scyllaridae.example.yml scyllaridae.yml
- name: Test with the Go CLI
run: go test -v ./...