Fix broken tests, ubuntu 24 support and cpu info #387
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test import_github_env | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'releases/**' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: | | |
| echo "VARNAME=value" >> $GITHUB_ENV | |
| - uses: actions/checkout@v4 | |
| - uses: ./ # pguyot/arm-runner-action@HEAD | |
| with: | |
| import_github_env: true | |
| commands: | | |
| [ -n "${VARNAME}" ] |