fix(tests): Run arm64 tests in arm64 architecture #1
This file contains 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: Single test | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- single-test | ||
jobs: | ||
read-file: | ||
name: Read file and print | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download file | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: homework_pre | ||
- shell: bash | ||
run: | | ||
expr 3 + 7 > math-homework.txt | ||
- name: Upload math result for job 1 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: homework_pre | ||
path: math-homework.txt | ||
write-file: | ||