Comment out no-pinentry tests #71
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Install Dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y fuse3 libfuse3-dev | |
| - name: Run Go Vet | |
| run: go vet ./... | |
| - name: Unit Tests | |
| run: go test -v ./... | |
| # - name: Unit Tests (no-pinentry) | |
| # run: go test -v -tags nopinentry ./... | |
| - name: Run E2E and FUSE Tests | |
| run: ./scripts/run-tests.sh |