diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f839585..73fe26e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: # The type of runner that the job will run on strategy: matrix: - os: ["ubuntu-latest", "macos-latest", "windows-latest"] + os: ["ubuntu-latest", "macos-latest"] runs-on: ${{ matrix.os }} # Steps represent a sequence of tasks that will be executed as part of the job @@ -27,5 +27,14 @@ jobs: - uses: actions/checkout@v4 - - name: Run tests - run: make test + - name: Tests + run: | + cp testdata/.env testdata/.env.parse . + v test vdotenv_test.v + + - name: Format + run: v fmt -verify . + + - name: Lint + run: v vet -W . +