diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-03-22 13:08:05 +0100 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2024-03-22 13:30:41 +0100 |
| commit | f7acc7f53a54f5b5f267b6770e0e24ed444ebc7a (patch) | |
| tree | 6b765d1abdd37550664d8393a230f87534bc2285 /.github/workflows/test.yml | |
| parent | a4b4286ced663a71ec1501d67a524edc3b957807 (diff) | |
Workflows: Bump windows Go and use Ruff
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 89b2b95..6236dab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,8 +3,8 @@ name: "[Ubuntu] Test & check build" on: [ push, pull_request ] jobs: - lint-go: - name: Lint go + lint: + name: Linting runs-on: ubuntu-latest steps: @@ -17,9 +17,15 @@ jobs: with: version: latest args: "-E stylecheck,revive,gocritic --out-${NO_FUTURE}format colored-line-number" + - name: Install ruff + run: pip install ruff + - name: Run ruff + run: | + ruff check wrappers/python/eduvpn_common + ruff format --check wrappers/python/eduvpn_common - test-go: - name: Test Go + test: + name: Run Tests runs-on: ubuntu-22.04 env: WEB_FQDN: eduvpnghci |
