Browse Source

DEVOPS-1400 - Fix Test Workflow (#5778)

pull/5785/head
Vince Grassia 2 years ago committed by GitHub
parent
commit
7b26998999
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      .github/workflows/test.yml

12
.github/workflows/test.yml

@ -22,7 +22,7 @@ defaults: @@ -22,7 +22,7 @@ defaults:
jobs:
test:
name: Run tests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
@ -72,6 +72,9 @@ jobs: @@ -72,6 +72,9 @@ jobs:
- windows-latest
steps:
- name: Rust version check
run: rustup --version
- name: Install gnome-keyring
if: ${{ matrix.os=='ubuntu-latest' }}
run: |
@ -81,13 +84,6 @@ jobs: @@ -81,13 +84,6 @@ jobs:
- name: Checkout repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Install rust
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
toolchain: stable
profile: minimal
override: true
- name: Build
working-directory: ./apps/desktop/desktop_native
run: cargo build

Loading…
Cancel
Save