X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.github%2Fworkflows%2Fengine_unit-test.yml;h=8357264f06686955e962a5ab674616de7c066182;hb=ce0afbc572d36c842891bd717bb462fce41f5e10;hp=7f1665a04566e84477de82bd93f6927b49420351;hpb=35f90af9096a0dad868107ea6dc005468badd5c3;p=kconfig-hardened-check.git diff --git a/.github/workflows/engine_unit-test.yml b/.github/workflows/engine_unit-test.yml index 7f1665a..8357264 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@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: ./coverage_unittest.xml flags: engine_unit-test