Update runtime to 6.6 #18
Workflow file for this run
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: Lint | |
on: pull_request | |
jobs: | |
validate-appdata: | |
name: Validate AppData | |
runs-on: ubuntu-latest | |
container: ubuntu:mantic # see #49, can be changed to ubuntu:rolling later | |
steps: | |
- uses: actions/checkout@v4 | |
- run: apt-get update | |
- run: apt-get -y install appstream | |
- name: Print versions | |
run: | | |
cat /etc/os-release | egrep "PRETTY_NAME|VERSION_ID" | |
echo "" | |
appstreamcli --version | |
- run: appstreamcli validate --pedantic io.github.Cockatrice.appdata.xml |