Add interface bounds to Impls #508
Workflow file for this run
  
    
      This file contains hidden or 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: macOS | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/macos.yml" | |
| - "gdk4/**" | |
| - "gsk4/**" | |
| - "gtk4/**" | |
| - "gtk4-macros/**" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/macos.yml" | |
| - "gdk4/**" | |
| - "gsk4/**" | |
| - "gtk4/**" | |
| - "gtk4-macros/**" | |
| workflow_dispatch: | |
| jobs: | |
| ci-macos: | |
| name: macOS | |
| runs-on: macos-12 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install GTK | |
| run: | | |
| brew install gtk4 | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| components: clippy | |
| - name: Build | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: build | |
| args: --features v4_16,xml_validation --manifest-path ./gtk4/Cargo.toml | |
| - name: Clippy | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: clippy | |
| args: --features v4_16,xml_validation --manifest-path ./gtk4/Cargo.toml | |
| # FIXME: renable once https://github.com/gtk-rs/gtk4-rs/issues/1235 is fixed | |
| #- name: Tests | |
| # uses: actions-rs/cargo@v1 | |
| # with: | |
| # command: test | |
| # args: --features v4_8,xml_validation |