fix: ensure relative paths before resolving #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- docs/* | |
- '**/*.md' | |
- test/*.go | |
pull_request: | |
branches: [ main ] | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
test: | |
runs-on: ${{ matrix.os }} | |
env: | |
C8Y_HOST: ${{ secrets.C8Y_HOST }} | |
C8Y_TENANT: ${{ secrets.C8Y_TENANT }} | |
C8Y_USER: ${{ secrets.C8Y_USER }} | |
C8Y_PASSWORD: ${{ secrets.C8Y_PASSWORD }} | |
# Max timeout for each request (in milliseconds) | |
C8Y_TIMEOUT: 30000 | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run tests | |
run: task test |