Skip to content

Commit

Permalink
Merge pull request #10 from AidanPine/git
Browse files Browse the repository at this point in the history
Git
  • Loading branch information
AidanPine authored Mar 22, 2024
2 parents d84b79f + 0e048b4 commit 84a0205
Show file tree
Hide file tree
Showing 17 changed files with 1,930 additions and 1,398 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/rust.yml
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
8 changes: 4 additions & 4 deletions .gitignore
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
Loading

0 comments on commit 84a0205

Please sign in to comment.