From 7e284c4924a34dd7cf49fd16e8499dfe8fde5b7b Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Tue, 20 Jun 2023 16:03:17 +0200 Subject: [PATCH] .github/workflows: Run the tests on Ubuntu 22.04 https://github.com/containers/toolbox/pull/1319 --- .github/workflows/ubuntu-tests.yaml | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/ubuntu-tests.yaml diff --git a/.github/workflows/ubuntu-tests.yaml b/.github/workflows/ubuntu-tests.yaml new file mode 100644 index 000000000..535b00843 --- /dev/null +++ b/.github/workflows/ubuntu-tests.yaml @@ -0,0 +1,30 @@ +name: ubuntu-tests + +on: + pull_request: + branches: + - main + schedule: + - cron: '0 0 * * *' + +jobs: + ubuntu-jammy-tests: + runs-on: ubuntu-22.04 + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: true + + - name: Install deb packages + run: | + sudo apt update + sudo apt install meson + + - name: Download Go modules + run: go mod download -x + working-directory: src + + - name: Set up build directory + run: meson setup --fatal-meson-warnings builddir