-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#48058] GH Actions: Switched to using ubuntu-20.04
Signed-off-by: Grzegorz Latosinski <[email protected]>
- Loading branch information
1 parent
86e39e1
commit 7a1a3ba
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,22 +7,25 @@ on: | |
branches: [main] | ||
|
||
jobs: | ||
readme-tests: | ||
runs-on: ubuntu-latest | ||
cancel-previous-job: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Cancel previous | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
readme-tests: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
lfs: true | ||
- name: Install tuttest dependencies | ||
run: | | ||
sudo apt-get update -qqy | ||
sudo apt-get install -qqy --no-install-recommends python3 python3-pip git colorized-logs | ||
sudo apt-get install -qqy --no-install-recommends python3 python3-pip git-lfs colorized-logs | ||
sudo pip3 install git+https://github.com/antmicro/tuttest.git | ||
- name: Run README.md snippets | ||
run: | | ||
|