X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=.github%2Fworkflows%2Ffunctional_test.yml;h=b9590eeda6d415736f5a65b68458471df9ee508c;hb=0bd85d90ddfbf752d519bea66ca36e92dfc7562c;hp=d8fe1db7956f3d7c1507121f901626c48927a083;hpb=35f90af9096a0dad868107ea6dc005468badd5c3;p=kconfig-hardened-check.git diff --git a/.github/workflows/functional_test.yml b/.github/workflows/functional_test.yml index d8fe1db..b9590ee 100644 --- a/.github/workflows/functional_test.yml +++ b/.github/workflows/functional_test.yml @@ -16,12 +16,12 @@ jobs: fail-fast: false matrix: # Current ubuntu-latest (Ubuntu 22.04) provides the following versions of Python: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '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 }} @@ -49,7 +49,7 @@ jobs: echo -e "\nHave checked $COUNT kconfigs" - name: Get source code for collecting coverage - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run the functional tests and collect the coverage run: | @@ -61,7 +61,9 @@ jobs: coverage xml -i -o coverage.xml - name: Handle coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: ./coverage.xml flags: functional_test