Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gnome bindings and librsvg #78

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 40 additions & 9 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,31 @@ jobs:
lint:
name: lint
runs-on: ubuntu-latest
container:
image: buildpack-deps:jammy

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install tools
run: |
apt update
apt install -y \
libgtk-3-dev \
build-essential \
libssl-dev \
openssl \
pkg-config\
curl
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: Install tools
run: sudo apt update && sudo apt install libgtk-3-dev -y

- name: Add clippy
run: rustup component add clippy

Expand All @@ -52,20 +63,30 @@ jobs:
tests:
name: tests
runs-on: ubuntu-latest
container:
image: buildpack-deps:jammy
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install tools
run: |
apt update
apt install -y \
libgtk-3-dev \
build-essential \
libssl-dev \
openssl \
pkg-config\
curl
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: Install tools
run: sudo apt update && sudo apt install libgtk-3-dev -y

# TODO: incorporate code coverage with tarpaulin or grcov
- name: Run tests
uses: actions-rs/cargo@v1
Expand All @@ -76,20 +97,30 @@ jobs:
compile:
name: build
runs-on: ubuntu-latest
container:
image: buildpack-deps:jammy
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install tools
run: |
apt update
apt install -y \
libgtk-3-dev \
build-essential \
libssl-dev \
openssl \
pkg-config\
curl
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: Install tools
run: sudo apt update && sudo apt install libgtk-3-dev -y

- name: Compile
uses: actions-rs/cargo@v1
with:
Expand Down
Loading