Skip to content

Update workflows

Update workflows #394

Workflow file for this run

name: Linux
on:
workflow_dispatch:
push:
branches:
- 'main'
pull_request:
branches:
- '**'
jobs:
Build_Test-Linux-Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Linux Dependencies
run: sudo apt-get update --fix-missing; sudo apt-get install freeglut3-dev; sudo apt-get install libopenal-dev
- name: Install Swift
curl -L https://swiftlang.github.io/swiftly/swiftly-install.sh | bash

Check failure on line 24 in .github/workflows/Linux.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/Linux.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
swiftly install 5.10.1
- name: Swift Version
run: swift --version
- name: Build
run: swift build
- name: Test
run: swift test