From 74befc465b60bbbbc52b054ab210cddf35d98371 Mon Sep 17 00:00:00 2001 From: Junya Okabe Date: Thu, 25 Apr 2024 03:06:55 +0900 Subject: [PATCH] fix: minor updates --- .github/workflows/test.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06ee534e..90b43ba0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,23 +1,21 @@ name: Testing -on: [push, pull_request] - -permissions: - contents: read - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true +on: + push: + branches: + - main + pull_request: + branches: + - main jobs: build: + name: Test / Unit Test strategy: matrix: os: - "ubuntu-22.04" - "ubuntu-latest" - python: - - "3.8" runs-on: ${{ matrix.os }} steps: