mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-04-27 14:57:43 +00:00
eh?
This commit is contained in:
parent
23f0616dbc
commit
b29a1d5ff7
1 changed files with 5 additions and 3 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
|
@ -21,13 +21,15 @@ jobs:
|
||||||
- name: Cache apt packages
|
- name: Cache apt packages
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: /var/cache/apt/archives
|
||||||
/var/cache/apt
|
|
||||||
/var/lib/apt/lists
|
|
||||||
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/test.yml') }}
|
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/test.yml') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-apt-
|
${{ runner.os }}-apt-
|
||||||
- name: Bootstrap
|
- name: Bootstrap
|
||||||
run: make bootstrap
|
run: make bootstrap
|
||||||
|
- name: Prepare apt cache
|
||||||
|
run: |
|
||||||
|
sudo rm -f /var/cache/apt/archives/lock
|
||||||
|
sudo chmod -R a+rX /var/cache/apt/archives
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make
|
run: make
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue