fix(from_curl): improve heuristic and recognize curl_path too #3
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: Conform Code | |
on: | |
pull_request: | |
paths: | |
- '**/*.lua' | |
branches: | |
- main | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
container-image: ghcr.io/mistweaverco/kulala-nvim-testrunner:latest | |
container: | |
image: ${{ matrix.container-image }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Restore cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
.tests | |
key: ${{ runner.os }}-${{ matrix.container-image }} | |
- name: Run tests | |
run: ./scripts/tests.sh run | |
lint: | |
name: Lint Code | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/mistweaverco/kulala-nvim-testrunner:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run linter | |
run: ./scripts/lint.sh check-code |