Skip to content

Commit

Permalink
Add GitHub Actions workflow to build the project
Browse files Browse the repository at this point in the history
  • Loading branch information
pepicrft committed Oct 5, 2024
1 parent 5b4015d commit bb393e5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/fuckingswiftconcurrency.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit bb393e5

Please sign in to comment.