From a228a4cc7b2864eb27901c23ea2a84e5677b69d3 Mon Sep 17 00:00:00 2001 From: Arihiro Yoshida Date: Thu, 23 Jan 2025 07:03:44 +0900 Subject: [PATCH] Update the Github workflow --- .github/workflows/testing.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index c470a93..8d77d68 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -2,15 +2,15 @@ name: run test cases on: push: - branches: [ master ] + branches: [v2] pull_request: - branches: [ master ] + branches: [v2] jobs: testing: strategy: matrix: - os: [ubuntu-20.04] + os: [ubuntu-22.04, ubuntu-24.04] compiler: [gcc, clang] runs-on: ${{ matrix.os }} @@ -19,7 +19,7 @@ jobs: CC: ${{ matrix.compiler }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: install bats run: | curl -L -o bats-core-1.2.1.tar.gz https://github.com/bats-core/bats-core/archive/v1.2.1.tar.gz