-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from AidanPine/git
Git
- Loading branch information
Showing
17 changed files
with
1,930 additions
and
1,398 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Rust | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build | ||
run: sudo apt-get update; sudo apt-get upgrade; | ||
sudo apt-get install libglib2.0-dev libssl-dev libatk1.0-dev libgtk-3-dev; | ||
cargo build --verbose | ||
- name: Run tests | ||
run: cargo test --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
.vscode | ||
.obsidian/ | ||
tmp/ | ||
settings.toml | ||
|
||
# for now don't track these as they constantly have breaking changes | ||
projects/ | ||
|
||
# Added by cargo | ||
|
||
/target | ||
/.idea/.gitignore | ||
/.idea/iron-coder.iml | ||
/.idea/modules.xml | ||
/.idea/vcs.xml | ||
/Cargo.lock | ||
*.lock | ||
/settings.toml |
Oops, something went wrong.