Skip to content

Commit

Permalink
changed runner image
Browse files Browse the repository at this point in the history
  • Loading branch information
osrufung committed Aug 12, 2022
1 parent e8bc35b commit c01fb2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build:

runs-on: macos-latest
runs-on: macos-12

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 2 additions & 3 deletions Sources/jungle/Commands/Main.swift
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import ArgumentParser

@main struct Jungle: AsyncParsableCommand {
@main
struct Jungle: AsyncParsableCommand {
static var configuration = CommandConfiguration(
commandName: "jungle",
abstract: "Displays dependency statistics",
version: "1.0.0",
subcommands: [HistoryCommand.self, CompareCommand.self, GraphCommand.self],
defaultSubcommand: CompareCommand.self
)

func run() throws { }
}

0 comments on commit c01fb2f

Please sign in to comment.