0.1.14/custom diff #82
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: Tests | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Install flatpak | |
| run: sudo -S apt install flatpak -y | |
| - name: Install flatpak-builder | |
| run: sudo -S apt install flatpak-builder -y | |
| - name: Add flathub to remotes | |
| run: flatpak remote-add --if-not-exists --user flathub https://dl.flathub.org/repo/flathub.flatpakrepo | |
| - name: Install Gnome Platform | |
| run: flatpak install -y org.gnome.Platform/x86_64/47 | |
| - name: Install Gnome Sdk | |
| run: flatpak install -y org.gnome.Sdk/x86_64/47 | |
| - name: Install Rust extension | |
| run: flatpak install -y org.freedesktop.Sdk.Extension.rust-stable/x86_64/24.08 | |
| - uses: actions/checkout@v4 | |
| - name: Build and run tests | |
| run: ./flatpak_test.sh |