spacequest-ios
spacequest-ios copied to clipboard
Add Fastlane and GitHub Actions for CI
This commit introduces Fastlane for building the iOS project and integrates it with GitHub Actions.
- A
Gemfileis added withfastlaneas a dependency. - A
fastlane/Fastfileis created with abuildlane that usesgymto build theSpacequestscheme. - A GitHub Actions workflow in
.github/workflows/main.ymlis set up to:- Trigger on every push.
- Checkout the code.
- Set up Ruby and Bundler.
- Install gems.
- Run
bundle exec fastlane buildto build the application.
This will automate the build process for every push to the repository.