-
Notifications
You must be signed in to change notification settings - Fork 1
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 #1 from savaughn/github-actions
Added GitHub actions
- Loading branch information
Showing
452 changed files
with
26,174 additions
and
4,211 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,22 @@ | ||
name: Build and Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build Project | ||
run: | | ||
make | ||
- name: Clean Up | ||
run: | | ||
make clean |
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
Binary file not shown.
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
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
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
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,9 +1,5 @@ | ||
/*! | ||
* @file pksav.h | ||
* @ingroup PKSav | ||
* @brief Global include file, includes all PKSav headers. | ||
* | ||
* Copyright (c) 2016-2017 Nicholas Corgan ([email protected]) | ||
/* | ||
* Copyright (c) 2016-2018 Nicholas Corgan ([email protected]) | ||
* | ||
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt | ||
* or copy at http://opensource.org/licenses/MIT) | ||
|
@@ -16,16 +12,13 @@ | |
#include <pksav/error.h> | ||
#include <pksav/version.h> | ||
|
||
#include <pksav/common/condition.h> | ||
#include <pksav/common/constants.h> | ||
#include <pksav/common/contest_stats.h> | ||
#include <pksav/common/datetime.h> | ||
#include <pksav/common/gen3_ribbons.h> | ||
#include <pksav/common/gen4_encounter_type.h> | ||
#include <pksav/common/markings.h> | ||
#include <pksav/common/nature.h> | ||
#include <pksav/common/nds_pokemon.h> | ||
#include <pksav/common/pokedex.h> | ||
#include <pksav/common/pokerus.h> | ||
#include <pksav/common/prng.h> | ||
#include <pksav/common/stats.h> | ||
#include <pksav/common/trainer_id.h> | ||
|
||
|
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
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
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
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
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
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,24 +1,22 @@ | ||
# | ||
# Copyright (c) 2016 Nicholas Corgan ([email protected]) | ||
# Copyright (c) 2016,2018 Nicholas Corgan ([email protected]) | ||
# | ||
# Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt | ||
# or copy at http://opensource.org/licenses/MIT) | ||
# | ||
|
||
SET(pksav_common_headers | ||
condition.h | ||
constants.h | ||
contest_stats.h | ||
coordinates.h | ||
datetime.h | ||
gen3_ribbons.h | ||
gen4_encounter_type.h | ||
item.h | ||
markings.h | ||
nature.h | ||
nds_pokemon.h | ||
pokedex.h | ||
pokerus.h | ||
prng.h | ||
stats.h | ||
trainer_id.h | ||
) | ||
|
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
Oops, something went wrong.