Skip to content

rename C++ src dir from fastText to fasttext #3

rename C++ src dir from fastText to fasttext

rename C++ src dir from fastText to fasttext #3

Workflow file for this run

on:
pull_request:
branches:
- master
- develop
workflow_call:
push:
branches:
- master
- develop
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-tests-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-tests-${{ hashFiles('**/go.sum') }}
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
golangci_lint_flags: "--config=.golangci.yml"
cache: true