This repository was archived by the owner on Dec 9, 2024. It is now read-only.
Add note about maintenance status of GTK3 bindings #161
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: "Build x86" | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- uses: ./.github/actions/install_deps | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
components: rustfmt, clippy | |
- name: Install gir | |
working-directory: ./gir | |
run: | | |
ls | |
export PATH=$PATH:/github/home/.cargo/bin | |
cargo install --force --path . | |
- uses: ./.github/actions/build_test_commit |