From bb393e5aaf43963ea92beb9f9ec3eaff2993ca19 Mon Sep 17 00:00:00 2001 From: Pedro Date: Sat, 5 Oct 2024 08:29:19 +0200 Subject: [PATCH] Add GitHub Actions workflow to build the project --- .github/workflows/fuckingswiftconcurrency.yml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/fuckingswiftconcurrency.yml diff --git a/.github/workflows/fuckingswiftconcurrency.yml b/.github/workflows/fuckingswiftconcurrency.yml new file mode 100644 index 0000000..549383a --- /dev/null +++ b/.github/workflows/fuckingswiftconcurrency.yml @@ -0,0 +1,31 @@ +name: Fucking Swift Concurrency + +on: + push: + branches: + - main + pull_request: {} + +concurrency: + group: fuckingswiftconcurrency-${{ github.head_ref }} + cancel-in-progress: true + +env: + MISE_EXPERIMENTAL: 1 + +jobs: + build: + runs-on: ubuntu-latest + name: Build + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install Mise dependencies + uses: jdx/mise-action@v2 + + - name: Install project dependencies + run: mise run install + + - name: Build + run: mise run build