X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.github%2Fworkflows%2Fengine_unit-test.yml;h=b52a1f513d4e929042b9165e572036bd2fdc6bd4;hb=16cc042a448ef10132826a91ef8af163c540d99a;hp=7f1665a04566e84477de82bd93f6927b49420351;hpb=c49734db6223320fa19f1501560bd5cc513d0832;p=kconfig-hardened-check.git diff --git a/.github/workflows/engine_unit-test.yml b/.github/workflows/engine_unit-test.yml index 7f1665a..b52a1f5 100644 --- a/.github/workflows/engine_unit-test.yml +++ b/.github/workflows/engine_unit-test.yml @@ -15,17 +15,17 @@ jobs: max-parallel: 1 fail-fast: false matrix: - python-version: ['3.11'] + python-version: ['3.12'] steps: - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Get source code for collecting coverage - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install coverage run: | @@ -38,7 +38,9 @@ jobs: coverage xml -i -o coverage_unittest.xml - name: Handle coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v3.1.5 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: ./coverage_unittest.xml flags: engine_unit-test